Update src/app/collezioni/page.tsx
This commit is contained in:
@@ -2,10 +2,9 @@
|
||||
|
||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import ReactLenis from "lenis/react";
|
||||
import ContactCTA from '@/components/sections/contact/ContactCTA';
|
||||
import FooterBaseReveal from '@/components/sections/footer/FooterBaseReveal';
|
||||
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
|
||||
import ProductCardFour from '@/components/sections/product/ProductCardFour';
|
||||
import FooterBaseReveal from '@/components/sections/footer/FooterBaseReveal';
|
||||
import ProductCardOne from '@/components/sections/product/ProductCardOne';
|
||||
|
||||
export default function CollezioniPage() {
|
||||
return (
|
||||
@@ -22,57 +21,75 @@ export default function CollezioniPage() {
|
||||
headingFontWeight="medium"
|
||||
>
|
||||
<ReactLenis root>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarLayoutFloatingInline
|
||||
navItems={[
|
||||
{ name: "Home", id: "/" },
|
||||
{ name: "Collezioni", id: "/collezioni" },
|
||||
{ name: "Chi Siamo", id: "/chi-siamo" },
|
||||
{ name: "Novità", id: "/novita" },
|
||||
{ name: "Contatti", id: "/contatti" },
|
||||
]}
|
||||
brandName="Fantasia e Abbigliamento"
|
||||
button={{ text: "Scopri" }}
|
||||
/>
|
||||
</div>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarLayoutFloatingInline
|
||||
navItems={[
|
||||
{ name: "Home", id: "/" },
|
||||
{ name: "Collezioni", id: "/collezioni" },
|
||||
{ name: "Chi Siamo", id: "/chi-siamo" },
|
||||
{ name: "Novità", id: "/novita" },
|
||||
{ name: "Contatti", id: "/contatti" },
|
||||
]}
|
||||
brandName="Fantasia e Abbigliamento"
|
||||
button={{ text: "Scopri" }}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="prod-1" data-section="prod-1">
|
||||
<ProductCardFour
|
||||
animationType="slide-up"
|
||||
textboxLayout="default"
|
||||
gridVariant="four-items-2x2-equal-grid"
|
||||
useInvertedBackground={false}
|
||||
products={[
|
||||
{ id: "p1", name: "Jeans Comfort", price: "€59", variant: "Denim", imageSrc: "http://img.b2bpic.net/free-photo/blonde-girl-wear-jeans-jacket-with-backpack-posed-against-orange-shutter_627829-8092.jpg" },
|
||||
{ id: "p2", name: "Felpa Soft", price: "€45", variant: "Cotton", imageSrc: "http://img.b2bpic.net/free-photo/stylish-short-haired-woman-with-earphones-casual-leather-coat-sunglasses-using-smartphone-posing-urban-brick-wall_273443-4567.jpg" },
|
||||
{ id: "p3", name: "T-shirt Premium", price: "€29", variant: "White", imageSrc: "http://img.b2bpic.net/free-photo/young-woman-white-t-shirt-hat-looking-cheerful_176474-35753.jpg" },
|
||||
]}
|
||||
title="Casual"
|
||||
description="Capi comodi e alla moda per tutti i giorni, dai jeans alle felpe di qualità."
|
||||
/>
|
||||
</div>
|
||||
<div id="casual" data-section="casual">
|
||||
<ProductCardOne
|
||||
title="Linea Casual"
|
||||
description="Comfort quotidiano senza rinunciare allo stile. Capi versatili pensati per la donna dinamica che ama vestire con eleganza naturale ogni giorno."
|
||||
gridVariant="three-columns-all-equal-width"
|
||||
animationType="slide-up"
|
||||
textboxLayout="split"
|
||||
products={[
|
||||
{ id: "1", name: "Maglia Comfort", price: "€59", imageSrc: "http://img.b2bpic.net/free-photo/young-woman-wearing-casual-outfit_23-2148906371.jpg?w=800&h=600" },
|
||||
{ id: "2", name: "Pantalone Relax", price: "€79", imageSrc: "http://img.b2bpic.net/free-photo/stylish-woman-walking-street_23-2148906375.jpg?w=800&h=600" },
|
||||
{ id: "3", name: "Cardigan Soft", price: "€89", imageSrc: "http://img.b2bpic.net/free-photo/pretty-woman-posing-with-denim-jacket_23-2148906372.jpg?w=800&h=600" }
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="contact" data-section="contact">
|
||||
<ContactCTA
|
||||
useInvertedBackground={false}
|
||||
background={{ variant: "plain" }}
|
||||
tag="Aggiornamenti"
|
||||
title="Non perdere le novità"
|
||||
description="Iscriviti alla nostra newsletter."
|
||||
buttons={[{ text: "Iscriviti", href: "#" }]}
|
||||
/>
|
||||
</div>
|
||||
<div id="elegante" data-section="elegante">
|
||||
<ProductCardOne
|
||||
title="Linea Elegante"
|
||||
description="Dettagli raffinati e tagli sartoriali che definiscono la tua professionalità. Ideale per l'ufficio o per eventi serali che richiedono un tocco di classe distintivo."
|
||||
gridVariant="three-columns-all-equal-width"
|
||||
animationType="slide-up"
|
||||
textboxLayout="split"
|
||||
products={[
|
||||
{ id: "4", name: "Blazer Strutturato", price: "€159", imageSrc: "http://img.b2bpic.net/free-photo/elegant-business-woman-blazer_23-2148906378.jpg?w=800&h=600" },
|
||||
{ id: "5", name: "Abito Midi", price: "€189", imageSrc: "http://img.b2bpic.net/free-photo/gorgeous-woman-wearing-midi-dress_23-2148906379.jpg?w=800&h=600" },
|
||||
{ id: "6", name: "Camicia Seta", price: "€129", imageSrc: "http://img.b2bpic.net/free-photo/woman-wearing-silk-shirt_23-2148906380.jpg?w=800&h=600" }
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterBaseReveal
|
||||
logoText="Fantasia e Abbigliamento"
|
||||
columns={[
|
||||
{ title: "Info", items: [{ label: "Via Roma 43, Cesano Boscone", href: "/contatti" }] },
|
||||
{ title: "Link", items: [{ label: "Collezioni", href: "/collezioni" }, { label: "Chi Siamo", href: "/chi-siamo" }] },
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
<div id="cerimonia" data-section="cerimonia">
|
||||
<ProductCardOne
|
||||
title="Linea Cerimonia"
|
||||
description="Abiti preziosi per i momenti che contano. Tessuti pregiati e design esclusivi creati per renderti protagonista nelle occasioni più importanti della tua vita."
|
||||
gridVariant="three-columns-all-equal-width"
|
||||
animationType="slide-up"
|
||||
textboxLayout="split"
|
||||
products={[
|
||||
{ id: "7", name: "Abito da Cocktail", price: "€299", imageSrc: "http://img.b2bpic.net/free-photo/woman-wearing-evening-dress_23-2148906381.jpg?w=800&h=600" },
|
||||
{ id: "8", name: "Abito Lungo", price: "€359", imageSrc: "http://img.b2bpic.net/free-photo/woman-wearing-long-gown_23-2148906382.jpg?w=800&h=600" },
|
||||
{ id: "9", name: "Coprispalle Prezioso", price: "€149", imageSrc: "http://img.b2bpic.net/free-photo/glamorous-woman-wearing-fur-stole_23-2148906383.jpg?w=800&h=600" }
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterBaseReveal
|
||||
logoText="Fantasia e Abbigliamento"
|
||||
columns={[
|
||||
{ title: "Info", items: [{ label: "Via Roma 43, Cesano Boscone", href: "/contatti" }] },
|
||||
{ title: "Link", items: [{ label: "Collezioni", href: "/collezioni" }, { label: "Chi Siamo", href: "/chi-siamo" }] },
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user