127 lines
5.1 KiB
TypeScript
127 lines
5.1 KiB
TypeScript
"use client";
|
|
|
|
import { Suspense } from "react";
|
|
import ReactLenis from "lenis/react";
|
|
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
|
import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen';
|
|
import FooterCard from '@/components/sections/footer/FooterCard';
|
|
import { Twitter, Linkedin, Github } from 'lucide-react';
|
|
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="shift-hover"
|
|
defaultTextAnimation="reveal-blur"
|
|
borderRadius="rounded"
|
|
contentWidth="medium"
|
|
sizing="mediumSizeLargeTitles"
|
|
background="floatingGradient"
|
|
cardStyle="gradient-radial"
|
|
primaryButtonStyle="shadow"
|
|
secondaryButtonStyle="glass"
|
|
headingFontWeight="medium"
|
|
>
|
|
<ReactLenis root>
|
|
<div id="navbar" data-section="navbar">
|
|
<NavbarStyleFullscreen
|
|
navItems={[
|
|
{"name":"Home","id":"/"},
|
|
{"name":"Shop","id":"/shop"}
|
|
]}
|
|
brandName="AIFlow"
|
|
bottomLeftText="Enterprise AI Solutions"
|
|
bottomRightText="hello@aiflow.io"
|
|
button={{ text: "Cart", onClick: () => console.log("cart") }}
|
|
/>
|
|
</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">
|
|
<FooterCard
|
|
logoText="AIFlow"
|
|
copyrightText="© 2025 AIFlow. All rights reserved."
|
|
socialLinks={[
|
|
{"icon":Twitter,"href":"https://twitter.com/aiflow","ariaLabel":"Twitter"},
|
|
{"icon":Linkedin,"href":"https://linkedin.com/company/aiflow","ariaLabel":"LinkedIn"},
|
|
{"icon":Github,"href":"https://github.com/aiflow","ariaLabel":"GitHub"}
|
|
]}
|
|
/>
|
|
</div>
|
|
</ReactLenis>
|
|
</ThemeProvider>
|
|
);
|
|
}
|
|
|
|
return (
|
|
<ThemeProvider
|
|
defaultButtonVariant="shift-hover"
|
|
defaultTextAnimation="reveal-blur"
|
|
borderRadius="rounded"
|
|
contentWidth="medium"
|
|
sizing="mediumSizeLargeTitles"
|
|
background="floatingGradient"
|
|
cardStyle="gradient-radial"
|
|
primaryButtonStyle="shadow"
|
|
secondaryButtonStyle="glass"
|
|
headingFontWeight="medium"
|
|
>
|
|
<ReactLenis root>
|
|
<div id="navbar" data-section="navbar">
|
|
<NavbarStyleFullscreen
|
|
navItems={[
|
|
{"name":"Home","id":"/"},
|
|
{"name":"Shop","id":"/shop"}
|
|
]}
|
|
brandName="AIFlow"
|
|
bottomLeftText="Enterprise AI Solutions"
|
|
bottomRightText="hello@aiflow.io"
|
|
button={{ text: "Cart", onClick: () => console.log("cart") }}
|
|
/>
|
|
</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">
|
|
<FooterCard
|
|
logoText="AIFlow"
|
|
copyrightText="© 2025 AIFlow. All rights reserved."
|
|
socialLinks={[
|
|
{"icon":Twitter,"href":"https://twitter.com/aiflow","ariaLabel":"Twitter"},
|
|
{"icon":Linkedin,"href":"https://linkedin.com/company/aiflow","ariaLabel":"LinkedIn"},
|
|
{"icon":Github,"href":"https://github.com/aiflow","ariaLabel":"GitHub"}
|
|
]}
|
|
/>
|
|
</div>
|
|
</ReactLenis>
|
|
</ThemeProvider>
|
|
);
|
|
}
|
|
|
|
export default function ShopPage() {
|
|
return (
|
|
<Suspense>
|
|
<ShopPageContent />
|
|
</Suspense>
|
|
);
|
|
}
|