From 72329fb20c3bc7703590b85bd0c42ea32e7cfe61 Mon Sep 17 00:00:00 2001 From: Rafi Zadanly Date: Wed, 29 Mar 2023 17:02:57 +0700 Subject: SEO --- src/pages/shop/checkout/[status].jsx | 15 ++++++++++----- src/pages/shop/checkout/index.jsx | 29 +++++++++++++++++------------ 2 files changed, 27 insertions(+), 17 deletions(-) (limited to 'src/pages/shop/checkout') diff --git a/src/pages/shop/checkout/[status].jsx b/src/pages/shop/checkout/[status].jsx index bf184c0e..7c39718c 100644 --- a/src/pages/shop/checkout/[status].jsx +++ b/src/pages/shop/checkout/[status].jsx @@ -3,6 +3,7 @@ import IsAuth from '@/lib/auth/components/IsAuth' import FinishCheckoutComponent from '@/lib/checkout/components/FinishCheckout' import { useRouter } from 'next/router' import axios from 'axios' +import Seo from '@/core/components/Seo' export async function getServerSideProps(context) { const { order_id } = context.query @@ -18,10 +19,14 @@ export default function Finish() { const router = useRouter() return ( - - - - - + <> + + + + + + + + ) } diff --git a/src/pages/shop/checkout/index.jsx b/src/pages/shop/checkout/index.jsx index 30d2c730..13fc7056 100644 --- a/src/pages/shop/checkout/index.jsx +++ b/src/pages/shop/checkout/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 CheckoutComponent from '@/lib/checkout/components/Checkout' export default function Checkout() { return ( - - - - - - + <> + - - - - - - + + + + + + + + + + + + + + ) } -- cgit v1.2.3