diff options
Diffstat (limited to 'src/components')
| -rw-r--r-- | src/components/layouts/Header.js | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/components/layouts/Header.js b/src/components/layouts/Header.js index 5cd0a1bc..4741905f 100644 --- a/src/components/layouts/Header.js +++ b/src/components/layouts/Header.js @@ -8,7 +8,8 @@ import { Bars3Icon, ShoppingCartIcon, ChevronRightIcon, - Cog6ToothIcon + Cog6ToothIcon, + HeartIcon } from "@heroicons/react/24/outline"; // Helpers @@ -117,6 +118,9 @@ export default function Header({ title }) { <Image src={Logo} alt="Logo Indoteknik" width={120} height={40} /> </Link> <div className="flex gap-x-4"> + <Link href="/my/wishlist"> + <HeartIcon className="w-6 text-gray_r-12" /> + </Link> <Link href="/shop/cart"> <ShoppingCartIcon className="w-6 text-gray_r-12" /> </Link> |
