summaryrefslogtreecommitdiff
path: root/src/pages/pembayaran-tempo.jsx
diff options
context:
space:
mode:
authorit-fixcomart <it@fixcomart.co.id>2024-12-10 13:40:28 +0700
committerit-fixcomart <it@fixcomart.co.id>2024-12-10 13:40:28 +0700
commit141e9113c7dc4483ab049137b4e4ac731657cfb0 (patch)
treec97480a76a10c96200bcc19b09075b745705af0f /src/pages/pembayaran-tempo.jsx
parentb3be7e6d5c320764ef3ca38df196218abf9be25b (diff)
<iman> update code
Diffstat (limited to 'src/pages/pembayaran-tempo.jsx')
-rw-r--r--src/pages/pembayaran-tempo.jsx14
1 files changed, 8 insertions, 6 deletions
diff --git a/src/pages/pembayaran-tempo.jsx b/src/pages/pembayaran-tempo.jsx
index 363e3099..8947bdd9 100644
--- a/src/pages/pembayaran-tempo.jsx
+++ b/src/pages/pembayaran-tempo.jsx
@@ -1,13 +1,15 @@
import Seo from '@/core/components/Seo'
import BasicLayout from '@/core/components/layouts/BasicLayout'
-import IframeContent from '@/lib/iframe/components/IframeContent'
+import PembayaranTempo from '@/lib/form/components/PembayaranTempo'
-export default function PembnayaranTempo() {
+export default function pembayaranTempo() {
return (
- <BasicLayout>
- <Seo title='Pambayaran Tempo - Indoteknik.com' />
+ <>
+ <Seo title='Pembayaran Tempo - Indoteknik.com' />
- <IframeContent url={`${process.env.NEXT_PUBLIC_ODOO_HOST}/content?url=pembayaran-tempo`} />
- </BasicLayout>
+ <BasicLayout>
+ <PembayaranTempo />
+ </BasicLayout>
+ </>
)
}