forked from crowetic/commerce
* Improved Categories * Improved Categories * Improved Categories * Improved Categories * Improved Categories * Improved Categories
42 lines
1.3 KiB
TypeScript
42 lines
1.3 KiB
TypeScript
import type { GetStaticPropsContext } from 'next'
|
|
import { Bag } from '@components/icons'
|
|
import { getConfig } from '@framework/api'
|
|
import { Layout } from '@components/common'
|
|
import { Container, Text } from '@components/ui'
|
|
import getAllPages from '@framework/common/get-all-pages'
|
|
import getSiteInfo from '@framework/common/get-site-info'
|
|
|
|
export async function getStaticProps({
|
|
preview,
|
|
locale,
|
|
}: GetStaticPropsContext) {
|
|
const config = getConfig({ locale })
|
|
const { categories } = await getSiteInfo({ config, preview })
|
|
const { pages } = await getAllPages({ config, preview })
|
|
|
|
return {
|
|
props: { pages, categories },
|
|
}
|
|
}
|
|
|
|
export default function Orders() {
|
|
return (
|
|
<Container>
|
|
<Text variant="pageHeading">My Orders</Text>
|
|
<div className="flex-1 p-24 flex flex-col justify-center items-center ">
|
|
<span className="border border-dashed border-secondary rounded-full flex items-center justify-center w-16 h-16 p-12 bg-primary text-primary">
|
|
<Bag className="absolute" />
|
|
</span>
|
|
<h2 className="pt-6 text-2xl font-bold tracking-wide text-center">
|
|
No orders found
|
|
</h2>
|
|
<p className="text-accents-6 px-10 text-center pt-2">
|
|
Biscuit oat cake wafer icing ice cream tiramisu pudding cupcake.
|
|
</p>
|
|
</div>
|
|
</Container>
|
|
)
|
|
}
|
|
|
|
Orders.Layout = Layout
|