diff --git a/src/app/shop/page.tsx b/src/app/shop/page.tsx index 0390ad2..b66b879 100644 --- a/src/app/shop/page.tsx +++ b/src/app/shop/page.tsx @@ -1,11 +1,33 @@ "use client"; -import ReactLenis from "lenis/react"; +import Link from "next/link"; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay'; import ProductCatalog from "@/components/ecommerce/productCatalog/ProductCatalog"; import { useProductCatalog } from "@/hooks/useProductCatalog"; +const navItems = [ + { name: "Home", id: "/" }, + { name: "About", id: "/about" }, + { name: "Menu", id: "/menu" }, + { name: "Contact", id: "/contact" }, +]; + +const Footer = () => ( + +); + export default function ShopPage() { const { products, @@ -29,22 +51,21 @@ export default function ShopPage() { secondaryButtonStyle="solid" headingFontWeight="semibold" > - - -
-
-

Loading products...

-
-
-
+ +
+
+

Loading products...

+
+
+