summaryrefslogtreecommitdiff
path: root/src/pages/shop/quotation
diff options
context:
space:
mode:
authorRafi Zadanly <zadanlyr@gmail.com>2023-03-29 17:02:57 +0700
committerRafi Zadanly <zadanlyr@gmail.com>2023-03-29 17:02:57 +0700
commit72329fb20c3bc7703590b85bd0c42ea32e7cfe61 (patch)
treea5ad3074010154cf6d105a81f1175da844c0a798 /src/pages/shop/quotation
parent0d42449cdd6e53cb8e98555660aefee81997a9d3 (diff)
SEO
Diffstat (limited to 'src/pages/shop/quotation')
-rw-r--r--src/pages/shop/quotation/finish.jsx5
-rw-r--r--src/pages/shop/quotation/index.jsx29
2 files changed, 22 insertions, 12 deletions
diff --git a/src/pages/shop/quotation/finish.jsx b/src/pages/shop/quotation/finish.jsx
index 32638b62..52e03cf6 100644
--- a/src/pages/shop/quotation/finish.jsx
+++ b/src/pages/shop/quotation/finish.jsx
@@ -1,3 +1,4 @@
+import Seo from '@/core/components/Seo'
import Link from '@/core/components/elements/Link/Link'
import BasicLayout from '@/core/components/layouts/BasicLayout'
import useAuth from '@/core/hooks/useAuth'
@@ -10,6 +11,9 @@ export default function FinishQuotation() {
const router = useRouter()
const { id } = router.query
return (
+ <>
+ <Seo title='Quotation Indoteknik.com' />
+
<IsAuth>
<BasicLayout>
<div className='mx-auto container'>
@@ -39,5 +43,6 @@ export default function FinishQuotation() {
</div>
</BasicLayout>
</IsAuth>
+ </>
)
}
diff --git a/src/pages/shop/quotation/index.jsx b/src/pages/shop/quotation/index.jsx
index efb35db9..bd086b72 100644
--- a/src/pages/shop/quotation/index.jsx
+++ b/src/pages/shop/quotation/index.jsx
@@ -1,3 +1,4 @@
+import Seo from '@/core/components/Seo'
import AppLayout from '@/core/components/layouts/AppLayout'
import BasicLayout from '@/core/components/layouts/BasicLayout'
import DesktopView from '@/core/components/views/DesktopView'
@@ -7,18 +8,22 @@ import QuotationComponent from '@/lib/quotation/components/Quotation'
export default function Quotation() {
return (
- <IsAuth>
- <MobileView>
- <AppLayout title='Quotation'>
- <QuotationComponent />
- </AppLayout>
- </MobileView>
+ <>
+ <Seo title='Quotation Indoteknik.com' />
- <DesktopView>
- <BasicLayout>
- <QuotationComponent />
- </BasicLayout>
- </DesktopView>
- </IsAuth>
+ <IsAuth>
+ <MobileView>
+ <AppLayout title='Quotation'>
+ <QuotationComponent />
+ </AppLayout>
+ </MobileView>
+
+ <DesktopView>
+ <BasicLayout>
+ <QuotationComponent />
+ </BasicLayout>
+ </DesktopView>
+ </IsAuth>
+ </>
)
}