123 lines
6.1 KiB
TypeScript
123 lines
6.1 KiB
TypeScript
"use client";
|
|
|
|
import ReactLenis from "lenis/react";
|
|
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
|
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
|
|
import FooterBase from '@/components/sections/footer/FooterBase';
|
|
import ProductCatalog from "@/components/ecommerce/productCatalog/ProductCatalog";
|
|
import { useProductCatalog } from "@/hooks/useProductCatalog";
|
|
import { useState } from "react";
|
|
|
|
export default function ShopPage() {
|
|
const {
|
|
products,
|
|
isLoading,
|
|
search,
|
|
setSearch,
|
|
filters,
|
|
} = useProductCatalog({ basePath: "/shop" });
|
|
|
|
const [cartOpen, setCartOpen] = useState(false);
|
|
|
|
if (isLoading) {
|
|
return (
|
|
<ThemeProvider
|
|
defaultButtonVariant="text-stagger"
|
|
defaultTextAnimation="reveal-blur"
|
|
borderRadius="pill"
|
|
contentWidth="smallMedium"
|
|
sizing="mediumLargeSizeMediumTitles"
|
|
background="sparkles-gradient"
|
|
cardStyle="layered-gradient"
|
|
primaryButtonStyle="primary-glow"
|
|
secondaryButtonStyle="solid"
|
|
headingFontWeight="light"
|
|
>
|
|
<ReactLenis root>
|
|
<div id="navbar" data-section="navbar">
|
|
<NavbarLayoutFloatingInline
|
|
brandName="ProPlumb"
|
|
navItems={[
|
|
{"name":"Home","id":"/"},
|
|
{"name":"Services","id":"services"},
|
|
{"name":"About","id":"about"},
|
|
{"name":"Testimonials","id":"testimonials"},
|
|
{"name":"Contact","id":"contact"},
|
|
{"name":"Shop","id":"/shop"}
|
|
]}
|
|
button={{ text: "Cart", onClick: () => setCartOpen(true) }}
|
|
/>
|
|
</div>
|
|
<main className="min-h-screen flex items-center justify-center pt-20">
|
|
<p className="text-foreground">Loading products...</p>
|
|
</main>
|
|
<div id="footer" data-section="footer">
|
|
<FooterBase
|
|
logoText="ProPlumb"
|
|
copyrightText="© 2025 ProPlumb. All rights reserved. California's trusted plumbing partner."
|
|
columns={[
|
|
{"title":"Services","items":[{"label":"Emergency Repair","href":"#services"},{"label":"Installation","href":"#services"},{"label":"Maintenance","href":"#services"},{"label":"Drain Cleaning","href":"#services"}]},
|
|
{"title":"Company","items":[{"label":"About Us","href":"#about"},{"label":"Our Team","href":"#"},{"label":"Testimonials","href":"#testimonials"},{"label":"Contact","href":"#contact"}]},
|
|
{"title":"Support","items":[{"label":"Call 1-800-PLUMBER","href":"tel:+1-800-PLUMBER"},{"label":"Schedule Service","href":"#contact"},{"label":"Privacy Policy","href":"#"},{"label":"Service Terms","href":"#"}]}
|
|
]}
|
|
/>
|
|
</div>
|
|
</ReactLenis>
|
|
</ThemeProvider>
|
|
);
|
|
}
|
|
|
|
return (
|
|
<ThemeProvider
|
|
defaultButtonVariant="text-stagger"
|
|
defaultTextAnimation="reveal-blur"
|
|
borderRadius="pill"
|
|
contentWidth="smallMedium"
|
|
sizing="mediumLargeSizeMediumTitles"
|
|
background="sparkles-gradient"
|
|
cardStyle="layered-gradient"
|
|
primaryButtonStyle="primary-glow"
|
|
secondaryButtonStyle="solid"
|
|
headingFontWeight="light"
|
|
>
|
|
<ReactLenis root>
|
|
<div id="navbar" data-section="navbar">
|
|
<NavbarLayoutFloatingInline
|
|
brandName="ProPlumb"
|
|
navItems={[
|
|
{"name":"Home","id":"/"},
|
|
{"name":"Services","id":"services"},
|
|
{"name":"About","id":"about"},
|
|
{"name":"Testimonials","id":"testimonials"},
|
|
{"name":"Contact","id":"contact"},
|
|
{"name":"Shop","id":"/shop"}
|
|
]}
|
|
button={{ text: "Cart", onClick: () => setCartOpen(true) }}
|
|
/>
|
|
</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>
|
|
<div id="footer" data-section="footer">
|
|
<FooterBase
|
|
logoText="ProPlumb"
|
|
copyrightText="© 2025 ProPlumb. All rights reserved. California's trusted plumbing partner."
|
|
columns={[
|
|
{"title":"Services","items":[{"label":"Emergency Repair","href":"#services"},{"label":"Installation","href":"#services"},{"label":"Maintenance","href":"#services"},{"label":"Drain Cleaning","href":"#services"}]},
|
|
{"title":"Company","items":[{"label":"About Us","href":"#about"},{"label":"Our Team","href":"#"},{"label":"Testimonials","href":"#testimonials"},{"label":"Contact","href":"#contact"}]},
|
|
{"title":"Support","items":[{"label":"Call 1-800-PLUMBER","href":"tel:+1-800-PLUMBER"},{"label":"Schedule Service","href":"#contact"},{"label":"Privacy Policy","href":"#"},{"label":"Service Terms","href":"#"}]}
|
|
]}
|
|
/>
|
|
</div>
|
|
</ReactLenis>
|
|
</ThemeProvider>
|
|
);
|
|
} |