diff --git a/src/app/shop/page.tsx b/src/app/shop/page.tsx index 2696303..13ce3e1 100644 --- a/src/app/shop/page.tsx +++ b/src/app/shop/page.tsx @@ -10,6 +10,7 @@ import ProductCart from "@/components/ecommerce/cart/ProductCart"; import { useProductCatalog } from "@/hooks/useProductCatalog"; import { useCart } from "@/hooks/useCart"; import { useCheckout } from "@/hooks/useCheckout"; +import Link from 'next/link'; function ShopPageContent() { const { @@ -41,6 +42,12 @@ function ShopPageContent() { await checkout(getCheckoutItems(), { successUrl: currentUrl.toString() }); }, [cartItems, checkout, getCheckoutItems]); + const navItems = [ + { name: "Home", id: "/" }, + { name: "Blog", id: "/blog" }, + { name: "Shop", id: "/shop" }, + ]; + if (isLoading) { return ( @@ -101,9 +107,9 @@ function ShopPageContent() {
@@ -140,7 +146,6 @@ function ShopPageContent() { { title: "Follow Us", items: [{ label: "Instagram", href: "#" }, { label: "Facebook", href: "#" }, { label: "TikTok", href: "#" }] } ]} copyrightText="© 2024 bb.q chicken — Columbus. All rights reserved." - useInvertedBackground={false} ariaLabel="Site footer with navigation and social links." />