108 lines
4.1 KiB
TypeScript
108 lines
4.1 KiB
TypeScript
"use client";
|
|
|
|
import { Suspense } from "react";
|
|
import ReactLenis from "lenis/react";
|
|
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
|
import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered';
|
|
import ProductCatalog from "@/components/ecommerce/productCatalog/ProductCatalog";
|
|
import { useProductCatalog } from "@/hooks/useProductCatalog";
|
|
|
|
function ShopPageContent() {
|
|
const {
|
|
products,
|
|
isLoading,
|
|
search,
|
|
setSearch,
|
|
filters,
|
|
} = useProductCatalog({ basePath: "/shop" });
|
|
|
|
if (isLoading) {
|
|
return (
|
|
<ThemeProvider
|
|
defaultButtonVariant="bounce-effect"
|
|
defaultTextAnimation="entrance-slide"
|
|
borderRadius="pill"
|
|
contentWidth="small"
|
|
sizing="mediumSizeLargeTitles"
|
|
background="aurora"
|
|
cardStyle="glass-depth"
|
|
primaryButtonStyle="double-inset"
|
|
secondaryButtonStyle="radial-glow"
|
|
headingFontWeight="semibold"
|
|
>
|
|
<ReactLenis root>
|
|
<div id="navbar" data-section="navbar">
|
|
<NavbarStyleCentered
|
|
navItems={[
|
|
{"name":"Home","id":"/"},
|
|
{"name":"Hero","id":"hero-section"},
|
|
{"name":"About","id":"about-section"},
|
|
{"name":"Feature","id":"features-section"},
|
|
{"name":"Metric","id":"metrics-section"},
|
|
{"name":"Testimonial","id":"testimonials-section"},
|
|
{"name":"Contact","id":"contact-section"},
|
|
{"name":"Shop","id":"/shop"}
|
|
]}
|
|
brandName="Webild"
|
|
/>
|
|
</div>
|
|
<main className="min-h-screen flex items-center justify-center pt-20">
|
|
<p className="text-foreground">Loading products...</p>
|
|
</main>
|
|
</ReactLenis>
|
|
</ThemeProvider>
|
|
);
|
|
}
|
|
|
|
return (
|
|
<ThemeProvider
|
|
defaultButtonVariant="bounce-effect"
|
|
defaultTextAnimation="entrance-slide"
|
|
borderRadius="pill"
|
|
contentWidth="small"
|
|
sizing="mediumSizeLargeTitles"
|
|
background="aurora"
|
|
cardStyle="glass-depth"
|
|
primaryButtonStyle="double-inset"
|
|
secondaryButtonStyle="radial-glow"
|
|
headingFontWeight="semibold"
|
|
>
|
|
<ReactLenis root>
|
|
<div id="navbar" data-section="navbar">
|
|
<NavbarStyleCentered
|
|
navItems={[
|
|
{"name":"Home","id":"/"},
|
|
{"name":"Hero","id":"hero-section"},
|
|
{"name":"About","id":"about-section"},
|
|
{"name":"Feature","id":"features-section"},
|
|
{"name":"Metric","id":"metrics-section"},
|
|
{"name":"Testimonial","id":"testimonials-section"},
|
|
{"name":"Contact","id":"contact-section"},
|
|
{"name":"Shop","id":"/shop"}
|
|
]}
|
|
brandName="Webild"
|
|
/>
|
|
</div>
|
|
<div id="productCatalog" data-section="productCatalog">
|
|
<ProductCatalog
|
|
layout="page"
|
|
products={products}
|
|
searchValue={search}
|
|
onSearchChange={setSearch}
|
|
searchPlaceholder="Search products..."
|
|
filters={filters}
|
|
emptyMessage="No products found"
|
|
/>
|
|
</div>
|
|
</ReactLenis>
|
|
</ThemeProvider>
|
|
);
|
|
}
|
|
|
|
export default function ShopPage() {
|
|
return (
|
|
<Suspense>
|
|
<ShopPageContent />
|
|
</Suspense>
|
|
);
|
|
} |