2020-10-30 22:39:28 -03:00

26 lines
867 B
TypeScript

import { FC } from 'react'
import Link from 'next/link'
import { Bag } from '@components/icons'
import styles from './styles.module.css'
const CartEmpty: FC = () => {
return (
<div className="flex-1 px-12 py-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 bg-primary p-12 rounded-lg text-primary">
<Bag className="absolute" />
</span>
<h2 className="pt-6 text-2xl font-bold tracking-wide text-center">
Your cart is empty
</h2>
<p className="text-accents-6 px-10 text-center pt-2">
Biscuit oat cake wafer icing ice cream tiramisu pudding cupcake.
</p>
<Link href="/">
<a className={styles.action}>Continue Shopping</a>
</Link>
</div>
)
}
export default CartEmpty