Add src/app/product-catalog/page.tsx
This commit is contained in:
65
src/app/product-catalog/page.tsx
Normal file
65
src/app/product-catalog/page.tsx
Normal file
@@ -0,0 +1,65 @@
|
||||
"use client";
|
||||
|
||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import ReactLenis from "lenis/react";
|
||||
import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay';
|
||||
import FooterBaseReveal from '@/components/sections/footer/FooterBaseReveal';
|
||||
import ProductCardFour from '@/components/sections/product/ProductCardFour';
|
||||
|
||||
export default function ProductCatalogPage() {
|
||||
return (
|
||||
<ThemeProvider
|
||||
defaultButtonVariant="icon-arrow"
|
||||
defaultTextAnimation="reveal-blur"
|
||||
borderRadius="rounded"
|
||||
contentWidth="small"
|
||||
sizing="largeSmallSizeMediumTitles"
|
||||
background="grid"
|
||||
cardStyle="subtle-shadow"
|
||||
primaryButtonStyle="radial-glow"
|
||||
secondaryButtonStyle="glass"
|
||||
headingFontWeight="semibold"
|
||||
>
|
||||
<ReactLenis root>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarLayoutFloatingOverlay
|
||||
navItems={[
|
||||
{ name: "Home", id: "/" },
|
||||
{ name: "Catalog", id: "/product-catalog" },
|
||||
{ name: "About", id: "/#about" },
|
||||
{ name: "Contact", id: "/#contact" },
|
||||
]}
|
||||
brandName="Chef Artisan"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="products" data-section="products">
|
||||
<ProductCardFour
|
||||
title="Cologne Inventory"
|
||||
description="Discover our curated collection of premium fragrances."
|
||||
useInvertedBackground={false}
|
||||
animationType="slide-up"
|
||||
gridVariant="four-items-2x2-equal-grid"
|
||||
textboxLayout="default"
|
||||
products={[
|
||||
{ id: "1", name: "Midnight Oud", price: "$120", variant: "Eau de Parfum", imageSrc: "https://img.b2bpic.net/free-photo/luxury-perfume-bottle-minimalist-background_23-2148766150.jpg" },
|
||||
{ id: "2", name: "Citrus Breeze", price: "$95", variant: "Eau de Toilette", imageSrc: "https://img.b2bpic.net/free-photo/perfume-bottle-blue-background_23-2148766155.jpg" },
|
||||
{ id: "3", name: "Sandalwood Soul", price: "$140", variant: "Extrait de Parfum", imageSrc: "https://img.b2bpic.net/free-photo/wooden-background-with-perfume-bottle_23-2148766160.jpg" },
|
||||
{ id: "4", name: "Floral Amber", price: "$110", variant: "Eau de Parfum", imageSrc: "https://img.b2bpic.net/free-photo/perfume-bottle-flowers_23-2148766165.jpg" }
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterBaseReveal
|
||||
columns={[
|
||||
{ title: "Navigate", items: [{ label: "Home", href: "/" }, { label: "Catalog", href: "/product-catalog" }] },
|
||||
{ title: "Legal", items: [{ label: "Privacy", href: "#" }, { label: "Terms", href: "#" }] }
|
||||
]}
|
||||
copyrightText="© 2024 Chef Artisan. All rights reserved."
|
||||
/>
|
||||
</div>
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user