diff --git a/components/cart/CartEmpty/index.tsx b/components/cart/CartEmpty/index.tsx
index dd5e7e971..ce79587eb 100644
--- a/components/cart/CartEmpty/index.tsx
+++ b/components/cart/CartEmpty/index.tsx
@@ -1,7 +1,9 @@
+import { FC } from 'react'
+import Link from 'next/link'
import { Bag } from '@components/icons'
-import { Button } from '@components/ui'
+import styles from './styles.module.css'
-const CartEmpty: React.FC = () => {
+const CartEmpty: FC = () => {
return (
@@ -13,9 +15,9 @@ const CartEmpty: React.FC = () => {
Biscuit oat cake wafer icing ice cream tiramisu pudding cupcake.
-
+
+ Continue Shopping
+
)
}
diff --git a/components/cart/CartEmpty/styles.module.css b/components/cart/CartEmpty/styles.module.css
new file mode 100644
index 000000000..bab8874ec
--- /dev/null
+++ b/components/cart/CartEmpty/styles.module.css
@@ -0,0 +1,11 @@
+.action {
+ @apply block mt-8 bg-secondary text-accents-1 px-10 rounded-sm leading-6 transition ease-in-out duration-150 shadow-sm font-semibold text-center uppercase py-4 border border-transparent;
+}
+
+.action:hover {
+ @apply bg-accents-0 text-primary border border-secondary;
+}
+
+.action:focus {
+ @apply shadow-outline outline-none;
+}
diff --git a/components/cart/CartSkeleton/index.tsx b/components/cart/CartSkeleton/index.tsx
index a93a8a27c..9588affc1 100644
--- a/components/cart/CartSkeleton/index.tsx
+++ b/components/cart/CartSkeleton/index.tsx
@@ -1,4 +1,6 @@
-const CartSkeleton: React.FC = () => {
+import { FC } from 'react'
+
+const CartSkeleton: FC = () => {
return (