Merge version_2 into main #2

Merged
bender merged 1 commits from version_2 into main 2026-05-26 08:16:14 +00:00

92
src/app/products/page.tsx Normal file
View File

@@ -0,0 +1,92 @@
"use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react";
import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered';
import ProductCardThree from '@/components/sections/product/ProductCardThree';
import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis';
export default function ProductsPage() {
return (
<ThemeProvider
defaultButtonVariant="shift-hover"
defaultTextAnimation="background-highlight"
borderRadius="soft"
contentWidth="mediumSmall"
sizing="mediumLarge"
background="noiseDiagonalGradient"
cardStyle="gradient-mesh"
primaryButtonStyle="shadow"
secondaryButtonStyle="radial-glow"
headingFontWeight="bold"
>
<ReactLenis root>
<div id="nav" data-section="nav">
<NavbarStyleCentered
navItems={[
{ name: "Home", id: "/" },
{ name: "About Us", id: "/#about" },
{ name: "Services", id: "/#services" },
{ name: "Products", id: "/products" },
{ name: "Team", id: "/#team" },
{ name: "Testimonials", id: "/#testimonials" },
{ name: "FAQ", id: "/#faq" },
{ name: "Contact", id: "/#contact" }
]}
brandName="Doccula Falegnameria"
/>
</div>
<div id="products-content" data-section="products-content">
<ProductCardThree
animationType="slide-up"
textboxLayout="default"
gridVariant="three-columns-all-equal-width"
useInvertedBackground={false}
products={[
{ id: "1", name: "Tavolo da Pranzo Rovere", price: "Su Richiesta", imageSrc: "http://img.b2bpic.net/free-photo/broken-sweet-oatmeal-cookie-wooden-cutting-board_114579-42942.jpg", imageAlt: "Elegant wooden dining table made of oak" },
{ id: "2", name: "Armadio a Muro Design", price: "Su Richiesta", imageSrc: "http://img.b2bpic.net/free-photo/empty-kitchen-drawer-with-bamboo-organizer-declutter-storage_169016-71151.jpg", imageAlt: "Custom designed built-in wardrobe" },
{ id: "3", name: "Cucina su Misura Moderna", price: "Su Richiesta", imageSrc: "http://img.b2bpic.net/free-photo/stylish-kitchen-drawer-with-wooden-dividers-interior-detail-modern-kitchen-island_169016-72791.jpg", imageAlt: "Modern custom-made kitchen with wooden cabinets" },
{ id: "4", name: "Libreria Boiserie", price: "Su Richiesta", imageSrc: "http://img.b2bpic.net/free-photo/waffle-sticks-glass-jar-inside-wooden-tray_114579-19163.jpg", imageAlt: "Elegant wooden bookshelf integrated with wall paneling" },
{ id: "5", name: "Scrivania Direzionale", price: "Su Richiesta", imageSrc: "http://img.b2bpic.net/free-photo/realistic-interior-design-with-furniture_23-2151439728.jpg", imageAlt: "Executive wooden desk for an office" },
{ id: "6", name: "Porta in Massello Intagliata", price: "Su Richiesta", imageSrc: "http://img.b2bpic.net/free-photo/soft-pastel-door-with-classic-columns-gentle-city-entrance_169016-71146.jpg", imageAlt: "Hand-carved solid wooden door" }
]}
title="Le Nostre Creazioni Artigianali"
description="Esplorate la nostra galleria di opere uniche, realizzate con maestria e passione, che testimoniano l'eccellenza e la versatilità della nostra falegnameria."
/>
</div>
<div id="footer" data-section="footer">
<FooterLogoEmphasis
logoSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=byji1l"
logoAlt="Doccula Falegnameria Logo"
columns={[
{
items: [
{ label: "Home", href: "/" },
{ label: "About Us", href: "/#about" },
{ label: "Services", href: "/#services" }
]
},
{
items: [
{ label: "Products", href: "/products" },
{ label: "Team", href: "/#team" },
{ label: "Testimonials", href: "/#testimonials" }
]
},
{
items: [
{ label: "FAQ", href: "/#faq" },
{ label: "Contact", href: "/#contact" },
{ label: "Privacy Policy", href: "#" }
]
}
]}
logoText="Doccula Falegnameria"
/>
</div>
</ReactLenis>
</ThemeProvider>
);
}