blob: a6f71c8b9775926caee05c13a5dfbaa27ec41758 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
import Seo from '@/core/components/Seo'
import BasicLayout from '@/core/components/layouts/BasicLayout'
import CreateMerchant from '@/lib/form/components/Merchant'
import CreateSuratDukungan from '@/lib/form/components/SuratDukungan'
export default function merchant() {
return (
<>
<Seo title='Merchant - Indoteknik.com' />
<BasicLayout>
<CreateMerchant></CreateMerchant>
</BasicLayout>
</>
)
}
|