From 36dbbd680e87ec581e02103da0d6e5ad2b3752ae Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 23 Feb 2026 12:59:16 +0000 Subject: [PATCH] Update src/app/shop/page.tsx --- src/app/shop/page.tsx | 33 +++++++++++++++++---------------- 1 file changed, 17 insertions(+), 16 deletions(-) diff --git a/src/app/shop/page.tsx b/src/app/shop/page.tsx index aef92c0..1fbfdbc 100644 --- a/src/app/shop/page.tsx +++ b/src/app/shop/page.tsx @@ -17,6 +17,19 @@ function ShopPageContent() { filters, } = useProductCatalog({ basePath: "/shop" }); + const navItems = [ + { name: "Home", id: "/" }, + { name: "About", id: "/#about" }, + { name: "Menu", id: "/#product" }, + { name: "Testimonials", id: "/#testimonials" }, + { name: "Contact", id: "/#contact" }, + ]; + + const footerColumns = [ + { items: [{ label: "Home", href: "/" }, { label: "Menu", href: "/#product" }, { label: "About Us", href: "/#about" }] }, + { items: [{ label: "Contact", href: "/#contact" }, { label: "Blog", href: "/blog" }, { label: "Privacy Policy", href: "/privacy" }] }, + ]; + if (isLoading) { return (