Loading products...
-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...
+