Add src/app/catalog/page.tsx

This commit is contained in:
2026-04-08 20:46:59 +00:00
parent 485b48f947
commit 232fce23d2

43
src/app/catalog/page.tsx Normal file
View File

@@ -0,0 +1,43 @@
"use client";
import ReactLenis from "lenis/react";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarLayoutFloatingOverlay from "@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay";
import ProductCatalog from "@/components/ecommerce/productCatalog/ProductCatalog";
import FooterBase from "@/components/sections/footer/FooterBase";
export default function CatalogPage() {
return (
<ThemeProvider>
<ReactLenis root>
<NavbarLayoutFloatingOverlay
brandName="Firenze"
navItems={[
{ name: "Collections", id: "collections" },
{ name: "Catalog", id: "/catalog" },
{ name: "About", id: "/about" },
{ name: "Contact", id: "contact" },
]}
/>
<ProductCatalog
layout="page"
title="Our Full Catalog"
products={[
{ id: "1", name: "Classic Walnut Dining Table", price: "$3,200", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/minimalist-spacious-interior-design_23-2150378910.jpg" },
{ id: "2", name: "Velvet Modular Sofa", price: "$4,500", rating: 4, imageSrc: "http://img.b2bpic.net/free-photo/room-with-green-leather-sofa_140725-6419.jpg" },
{ id: "3", name: "Sculptural Brass Lamp", price: "$850", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/side-view-modern-embossed-glass-vase-with-green-flowers-wooden-table_140725-12906.jpg" }
]}
/>
<FooterBase
logoText="Firenze Furniture"
copyrightText="© 2026 | Firenze Furniture Co."
columns={[
{ title: "Company", items: [{ label: "History", href: "/about" }, { label: "Artisans", href: "/about" }, { label: "Stores", href: "#" }] },
{ title: "Shop", items: [{ label: "Collections", href: "/catalog" }, { label: "Dining", href: "/catalog" }, { label: "Bedroom", href: "/catalog" }] },
{ title: "Connect", items: [{ label: "Instagram", href: "#" }, { label: "Pinterest", href: "#" }, { label: "Newsletter", href: "#" }] },
]}
/>
</ReactLenis>
</ThemeProvider>
);
}