summaryrefslogtreecommitdiff
path: root/src/pages/pembayaran-tempo.jsx
blob: 8947bdd9e1e74a085f394b3da849f023fe3194c0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
import Seo from '@/core/components/Seo'
import BasicLayout from '@/core/components/layouts/BasicLayout'
import PembayaranTempo from '@/lib/form/components/PembayaranTempo'

export default function pembayaranTempo() {
  return (
    <>
      <Seo title='Pembayaran Tempo - Indoteknik.com' />

      <BasicLayout>
        <PembayaranTempo />
      </BasicLayout>
    </>
  )
}