diff --git a/src/app/shop/page.tsx b/src/app/shop/page.tsx index 967d540..fe5f5a9 100644 --- a/src/app/shop/page.tsx +++ b/src/app/shop/page.tsx @@ -1,76 +1,34 @@ "use client"; import { Suspense } from "react"; -import ReactLenis from "lenis/react"; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple'; -import ProductCatalog from "@/components/ecommerce/productCatalog/ProductCatalog"; -import { useProductCatalog } from "@/hooks/useProductCatalog"; function ShopPageContent() { - const { - products, - isLoading, - search, - setSearch, - filters, - } = useProductCatalog({ basePath: "/shop" }); - const themeProviderProps = { - defaultButtonVariant: "expand-hover" as const, - defaultTextAnimation: "background-highlight" as const, - borderRadius: "pill" as const, - contentWidth: "compact" as const, - sizing: "largeSmallSizeLargeTitles" as const, - background: "circleGradient" as const, - cardStyle: "gradient-radial" as const, - primaryButtonStyle: "double-inset" as const, - secondaryButtonStyle: "layered" as const, - headingFontWeight: "light" as const + defaultButtonVariant: "expand-hover", defaultTextAnimation: "background-highlight", borderRadius: "pill", contentWidth: "compact", sizing: "largeSmallSizeLargeTitles", background: "circleGradient", cardStyle: "gradient-radial", primaryButtonStyle: "double-inset", secondaryButtonStyle: "layered", headingFontWeight: "light" }; const navbarProps = { - brandName: "No song", - navItems: [ + brandName: "No song", navItems: [ { name: "Home", id: "/" }, - { name: "Shop", id: "/shop" } - ], - button: { text: "Cart", onClick: () => console.log("Cart button clicked") } + { name: "Products", id: "/#products-section" }, + { name: "About", id: "/#about-section" }, + { name: "Contact", id: "/#contact-section" }, + ] }; - if (isLoading) { - return ( - - - - - - - Loading products... - - - - ); - } - return ( - - - + + + + + + Shop + Our collection of premium instruments will be available here soon. - - - - + ); } @@ -81,4 +39,4 @@ export default function ShopPage() { ); -} \ No newline at end of file +}
Loading products...
Our collection of premium instruments will be available here soon.