Add src/app/products/page.tsx
This commit is contained in:
62
src/app/products/page.tsx
Normal file
62
src/app/products/page.tsx
Normal file
@@ -0,0 +1,62 @@
|
||||
"use client";
|
||||
|
||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import ReactLenis from "lenis/react";
|
||||
import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered';
|
||||
import FooterBase from '@/components/sections/footer/FooterBase';
|
||||
import ProductCatalog from '@/components/ecommerce/productCatalog/ProductCatalog';
|
||||
|
||||
export default function ProductsPage() {
|
||||
return (
|
||||
<ThemeProvider
|
||||
defaultButtonVariant="text-shift"
|
||||
defaultTextAnimation="reveal-blur"
|
||||
borderRadius="soft"
|
||||
contentWidth="smallMedium"
|
||||
sizing="medium"
|
||||
background="fluid"
|
||||
cardStyle="glass-depth"
|
||||
primaryButtonStyle="gradient"
|
||||
secondaryButtonStyle="glass"
|
||||
headingFontWeight="extrabold"
|
||||
>
|
||||
<ReactLenis root>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarStyleCentered
|
||||
navItems={[
|
||||
{ name: "Home", id: "/" },
|
||||
{ name: "Collection", id: "/products" },
|
||||
{ name: "Contact", id: "/#contact" },
|
||||
]}
|
||||
brandName="MODERNWEAR"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="products" data-section="products" style={{ marginTop: "120px" }}>
|
||||
<ProductCatalog
|
||||
layout="page"
|
||||
products={[
|
||||
{ id: "p1", name: "Linen Boxy Shirt", price: "$89", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/stylish-girl_1157-8868.jpg" },
|
||||
{ id: "p2", name: "Tailored Trousers", price: "$129", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/collection-beige-tone-colored-pants_23-2150773386.jpg" },
|
||||
{ id: "p3", name: "Midi Wrap Dress", price: "$159", rating: 4, imageSrc: "http://img.b2bpic.net/free-photo/portrait-young-woman-boho-dress-with-romantic-garden-aesthetic-vegetation_23-2150260769.jpg" },
|
||||
{ id: "p4", name: "Unstructured Blazer", price: "$199", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/elegant-female-model-posing-window-elegant-waistcoat-new-feminity-concept_23-2148951061.jpg" },
|
||||
{ id: "p5", name: "Cotton Crewneck", price: "$69", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/portrait-young-beautiful-smiling-female-trendy-summer-pink-clothes_158538-19959.jpg" },
|
||||
{ id: "p6", name: "Classic Trench", price: "$249", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/beautiful-woman-wearing-minimalist-shirt_23-2149317768.jpg" },
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterBase
|
||||
columns={[
|
||||
{ title: "Shop", items: [{ label: "New Arrivals", href: "/products" }, { label: "Essentials", href: "/products" }] },
|
||||
{ title: "Brand", items: [{ label: "Our Story", href: "/#about" }, { label: "Sustainability", href: "/#about" }] },
|
||||
{ title: "Support", items: [{ label: "FAQ", href: "/#faq" }, { label: "Contact", href: "/#contact" }] },
|
||||
]}
|
||||
logoText="MODERNWEAR"
|
||||
/>
|
||||
</div>
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user