From 8eb69246a77f3a6bbd9b62bc36f4b903a99e4518 Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 19 Feb 2026 13:46:20 +0000 Subject: [PATCH] Update src/app/shop/page.tsx --- src/app/shop/page.tsx | 119 +++++++++++++++++++++--------------------- 1 file changed, 60 insertions(+), 59 deletions(-) diff --git a/src/app/shop/page.tsx b/src/app/shop/page.tsx index e7e986d..cca1c9e 100644 --- a/src/app/shop/page.tsx +++ b/src/app/shop/page.tsx @@ -1,6 +1,5 @@ "use client"; -import ReactLenis from "lenis/react"; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import NavbarLayoutFloatingInline from "@/components/navbar/NavbarLayoutFloatingInline"; import ProductCatalog from "@/components/ecommerce/productCatalog/ProductCatalog"; @@ -15,6 +14,12 @@ export default function ShopPage() { setSearch, filters, } = useProductCatalog({ basePath: "/shop" }); + + const footerColumns = [ + { title: "Shop", items: [{ label: "All Fragrances", href: "/shop" }, { label: "New Arrivals", href: "/shop" }, { label: "Best Sellers", href: "/shop" }] }, + { title: "Company", items: [{ label: "About Us", href: "/#about" }, { label: "Our Story", href: "/#about" }, { label: "Contact", href: "/#contact" }] }, + { title: "Support", items: [{ label: "FAQ", href: "/#faq" }, { label: "Shipping", href: "#" }, { label: "Returns", href: "#" }] } + ]; if (isLoading) { return ( @@ -30,31 +35,29 @@ export default function ShopPage() { secondaryButtonStyle="layered" headingFontWeight="semibold" > - - -
-

Loading products...

-
- -
+ +
+

Loading products...

+
+ ); } @@ -72,39 +75,37 @@ export default function ShopPage() { secondaryButtonStyle="layered" headingFontWeight="semibold" > - - -
- -
- -
+ +
+ +
+ ); }