Update src/app/collezioni/page.tsx

This commit is contained in:
2026-05-06 12:02:25 +00:00
parent 0cffe14823
commit 28cf1ca607

View File

@@ -7,7 +7,7 @@ import FooterBaseReveal from '@/components/sections/footer/FooterBaseReveal';
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
import ProductCardFour from '@/components/sections/product/ProductCardFour';
export default function LandingPage() {
export default function CollezioniPage() {
return (
<ThemeProvider
defaultButtonVariant="text-shift"
@@ -25,28 +25,14 @@ export default function LandingPage() {
<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",
},
{ 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>
@@ -57,48 +43,9 @@ export default function LandingPage() {
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",
},
{
id: "p4",
name: "Pantaloni Casual",
price: "€65",
variant: "Khaki",
imageSrc: "http://img.b2bpic.net/free-photo/blue-line-loose-pants-women-s-apparel-rear-view_53876-102139.jpg",
},
{
id: "p5",
name: "Maglione Leggero",
price: "€79",
variant: "Wool",
imageSrc: "http://img.b2bpic.net/free-photo/two-girls-walking-together-winter-park_1303-12959.jpg",
},
{
id: "p6",
name: "Cardigan",
price: "€89",
variant: "Grey",
imageSrc: "http://img.b2bpic.net/free-photo/woman-coat-walking-street-talking-phone_1303-14326.jpg",
},
{ 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à."
@@ -108,18 +55,11 @@ export default function LandingPage() {
<div id="contact" data-section="contact">
<ContactCTA
useInvertedBackground={false}
background={{
variant: "plain",
}}
background={{ variant: "plain" }}
tag="Aggiornamenti"
title="Non perdere le novità"
description="Iscriviti alla nostra newsletter."
buttons={[
{
text: "Iscriviti",
href: "#",
},
]}
buttons={[{ text: "Iscriviti", href: "#" }]}
/>
</div>
@@ -127,28 +67,8 @@ export default function LandingPage() {
<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",
},
],
},
{ 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>