blob: 13fc70562d994fc170fae24d2130ca1dee38581a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
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'
import MobileView from '@/core/components/views/MobileView'
import IsAuth from '@/lib/auth/components/IsAuth'
import CheckoutComponent from '@/lib/checkout/components/Checkout'
export default function Checkout() {
return (
<>
<Seo title='Checkout Indoteknik.com' />
<IsAuth>
<MobileView>
<AppLayout title='Checkout'>
<CheckoutComponent />
</AppLayout>
</MobileView>
<DesktopView>
<BasicLayout>
<CheckoutComponent />
</BasicLayout>
</DesktopView>
</IsAuth>
</>
)
}
|