summaryrefslogtreecommitdiff
path: root/src/pages/surat-dukungan.jsx
blob: 8058f34dfac60551525b72b68b54234d129e5c50 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
import Seo from '@/core/components/Seo'
import BasicLayout from '@/core/components/layouts/BasicLayout'
import CreateKunjunganService from '@/lib/form/components/KunjunganService'
import CreateSuratDukungan from '@/lib/form/components/SuratDukungan'

export default function surat_dukungan() {
  return (
    <>
      <Seo title='Surat Dukungan - Indoteknik.com' />

      <BasicLayout>
        <CreateSuratDukungan></CreateSuratDukungan>
      </BasicLayout>
    </>
  )
}