diff --git a/components/cart/CartSidebarView/CartSidebarView.tsx b/components/cart/CartSidebarView/CartSidebarView.tsx index 9f5421519..0ac0bb0ac 100644 --- a/components/cart/CartSidebarView/CartSidebarView.tsx +++ b/components/cart/CartSidebarView/CartSidebarView.tsx @@ -57,13 +57,13 @@ const CartSidebarView: FC = () => { {isEmpty ? (
- +

Your cart is empty

-

+

Biscuit oat cake wafer icing ice cream tiramisu pudding cupcake.

diff --git a/components/core/UserNav/UserNav.module.css b/components/core/UserNav/UserNav.module.css index 7219ecdb0..8b8fa8c14 100644 --- a/components/core/UserNav/UserNav.module.css +++ b/components/core/UserNav/UserNav.module.css @@ -7,10 +7,10 @@ } .item { - @apply mr-6 cursor-pointer relative transition ease-in-out duration-100 text-primary flex items-center outline-none text-accents-6; + @apply mr-6 cursor-pointer relative transition ease-in-out duration-100 text-primary flex items-center outline-none text-primary; &:hover { - @apply text-accents-9 transition scale-110 duration-100; + @apply text-accents-6 transition scale-110 duration-100; } &:last-child { diff --git a/pages/orders.tsx b/pages/orders.tsx index 87c74ac8e..37ba013a8 100644 --- a/pages/orders.tsx +++ b/pages/orders.tsx @@ -1,10 +1,21 @@ import { Layout } from '@components/core' import { Container, Text } from '@components/ui' - +import { Bag } from '@components/icons' export default function Orders() { return ( My Orders +
+ + + +

+ No orders found +

+

+ Biscuit oat cake wafer icing ice cream tiramisu pudding cupcake. +

+
) }