diff --git a/src/app/shop/page.tsx b/src/app/shop/page.tsx index 23953cd..ef2176a 100644 --- a/src/app/shop/page.tsx +++ b/src/app/shop/page.tsx @@ -1,8 +1,7 @@ "use client"; -import ReactLenis from "lenis/react"; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; -import NavbarLayoutFloatingInline from "@/components/navbar/NavbarLayoutFloatingInline"; +import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline'; import ProductCatalog from "@/components/ecommerce/productCatalog/ProductCatalog"; import { useProductCatalog } from "@/hooks/useProductCatalog"; import FooterBaseCard from '@/components/sections/footer/FooterBaseCard'; @@ -16,6 +15,17 @@ export default function ShopPage() { filters, } = useProductCatalog({ basePath: "/shop" }); + const navItems = [ + { name: "Home", id: "/" }, + { name: "Shop", id: "/shop" }, + { name: "Blog", id: "/blog" }, + { name: "Features", id: "/#features" }, + { name: "Products", id: "/#products" }, + { name: "Testimonials", id: "/#testimonials" }, + { name: "FAQ", id: "/#faq" }, + { name: "Contact", id: "/#contact" } + ]; + if (isLoading) { return ( - - - {} }} - className="py-4 px-6 md:px-8 lg:px-12" - navItemClassName="text-foreground hover:text-primary-cta" - buttonClassName="" - buttonTextClassName="" - /> - - - - Loading products... - - - - + + {} }} + className="py-4 px-6 md:px-8 lg:px-12" + navItemClassName="text-foreground hover:text-primary-cta" + buttonClassName="" + buttonTextClassName="" + /> + + + + Loading products... + + + ); } @@ -85,10 +93,9 @@ export default function ShopPage() { secondaryButtonStyle="layered" headingFontWeight="extrabold" > - - + {} }} className="py-4 px-6 md:px-8 lg:px-12" @@ -96,39 +103,38 @@ export default function ShopPage() { buttonClassName="" buttonTextClassName="" /> - - - + + + + - - + ); }
Loading products...