Add src/app/gallery/page.tsx

This commit is contained in:
2026-04-08 20:47:00 +00:00
parent 94468da380
commit 90785e6923

46
src/app/gallery/page.tsx Normal file
View File

@@ -0,0 +1,46 @@
"use client";
import ReactLenis from "lenis/react";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarLayoutFloatingOverlay from "@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay";
import ProductCardThree from "@/components/sections/product/ProductCardThree";
import FooterBase from "@/components/sections/footer/FooterBase";
export default function GalleryPage() {
return (
<ThemeProvider>
<ReactLenis root>
<NavbarLayoutFloatingOverlay
brandName="Firenze"
navItems={[
{ name: "Home", id: "/" },
{ name: "Collections", id: "/gallery" },
{ name: "Contact", id: "/contact" },
]}
button={{ text: "View Catalog", href: "/gallery" }}
/>
<ProductCardThree
title="Our Furniture Showcase"
description="A curated selection of our finest handcrafted Italian pieces."
gridVariant="bento-grid"
animationType="slide-up"
textboxLayout="default"
products={[
{ id: "1", name: "Walnut Dining Table", price: "$4,500", imageSrc: "http://img.b2bpic.net/free-photo/minimalist-spacious-interior-design_23-2150378910.jpg" },
{ id: "2", name: "Velvet Modular Sofa", price: "$8,200", imageSrc: "http://img.b2bpic.net/free-photo/pillow-sofa_1203-2656.jpg" },
{ id: "3", name: "Artisanal Bed", price: "$6,000", imageSrc: "http://img.b2bpic.net/free-photo/luxury-hotel-suite-modern-elegance-illuminated-naturally-generated-by-ai_188544-18309.jpg" },
]}
className="pt-32 pb-24"
/>
<FooterBase
logoText="Firenze Furniture"
copyrightText="© 2026 | Firenze Furniture Co."
columns={[
{ title: "Company", items: [{ label: "Home", href: "/" }, { label: "Contact", href: "/contact" }] },
{ title: "Shop", items: [{ label: "View Gallery", href: "/gallery" }] },
]}
/>
</ReactLenis>
</ThemeProvider>
);
}