Merge version_1 into main
Merge version_1 into main
This commit was merged in pull request #2.
This commit is contained in:
@@ -6,8 +6,9 @@ import FeatureCardTwentySix from '@/components/sections/feature/FeatureCardTwent
|
||||
import FooterBaseReveal from '@/components/sections/footer/FooterBaseReveal';
|
||||
import MetricCardTwo from '@/components/sections/metrics/MetricCardTwo';
|
||||
import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay';
|
||||
import { Box, BadgePercent } from 'lucide-react';
|
||||
|
||||
export default function LandingPage() {
|
||||
export default function CreaBoxPage() {
|
||||
return (
|
||||
<ThemeProvider
|
||||
defaultButtonVariant="directional-hover"
|
||||
@@ -25,26 +26,11 @@ export default function LandingPage() {
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarLayoutFloatingOverlay
|
||||
navItems={[
|
||||
{
|
||||
name: "Vini",
|
||||
id: "/vini",
|
||||
},
|
||||
{
|
||||
name: "Gift Box",
|
||||
id: "/gift-box",
|
||||
},
|
||||
{
|
||||
name: "Crea Box",
|
||||
id: "/crea-box",
|
||||
},
|
||||
{
|
||||
name: "Consulenza",
|
||||
id: "/consulenza",
|
||||
},
|
||||
{
|
||||
name: "Chi siamo",
|
||||
id: "/chi-siamo",
|
||||
},
|
||||
{ name: "Vini", id: "/vini" },
|
||||
{ name: "Gift Box", id: "/gift-box" },
|
||||
{ name: "Crea Box", id: "/crea-box" },
|
||||
{ name: "Consulenza", id: "/consulenza" },
|
||||
{ name: "Chi siamo", id: "/chi-siamo" },
|
||||
]}
|
||||
brandName="Botte"
|
||||
/>
|
||||
@@ -57,20 +43,8 @@ export default function LandingPage() {
|
||||
title="Configuratore"
|
||||
description="Crea la box su misura."
|
||||
features={[
|
||||
{
|
||||
title: "Dimensioni box",
|
||||
description: "Da 1 a 6 bottiglie.",
|
||||
buttonIcon: "Box",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/cheese-appetizer_23-2148145180.jpg?_wi=3",
|
||||
imageAlt: "bottle of italian wine premium label white background",
|
||||
},
|
||||
{
|
||||
title: "Selezione fascia",
|
||||
description: "Economico o Luxury.",
|
||||
buttonIcon: "BadgePercent",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/fresh-maracuja-fruit-also-known-as-passion-fruit_23-2151554261.jpg?_wi=4",
|
||||
imageAlt: "bottle of italian wine premium label white background",
|
||||
},
|
||||
{ title: "Dimensioni box", description: "Da 1 a 6 bottiglie.", buttonIcon: Box, imageSrc: "http://img.b2bpic.net/free-photo/cheese-appetizer_23-2148145180.jpg", imageAlt: "bottle of italian wine premium label white background" },
|
||||
{ title: "Selezione fascia", description: "Economico o Luxury.", buttonIcon: BadgePercent, imageSrc: "http://img.b2bpic.net/free-photo/fresh-maracuja-fruit-also-known-as-passion-fruit_23-2151554261.jpg", imageAlt: "bottle of italian wine premium label white background" },
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
@@ -84,16 +58,8 @@ export default function LandingPage() {
|
||||
title="Crea la tua selezione"
|
||||
description="Il configuratore guida la scelta migliore."
|
||||
metrics={[
|
||||
{
|
||||
id: "m1",
|
||||
value: "100+",
|
||||
description: "Vini disponibili",
|
||||
},
|
||||
{
|
||||
id: "m2",
|
||||
value: "24h",
|
||||
description: "Tempo configurazione",
|
||||
},
|
||||
{ id: "m1", value: "100+", description: "Vini disponibili" },
|
||||
{ id: "m2", value: "24h", description: "Tempo configurazione" },
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
@@ -102,53 +68,9 @@ export default function LandingPage() {
|
||||
<FooterBaseReveal
|
||||
logoText="Botte"
|
||||
columns={[
|
||||
{
|
||||
title: "Catalogo",
|
||||
items: [
|
||||
{
|
||||
label: "Bollicine",
|
||||
href: "/vini",
|
||||
},
|
||||
{
|
||||
label: "Rossi",
|
||||
href: "/vini",
|
||||
},
|
||||
{
|
||||
label: "Bianchi",
|
||||
href: "/vini",
|
||||
},
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Servizi",
|
||||
items: [
|
||||
{
|
||||
label: "Crea Box",
|
||||
href: "/crea-box",
|
||||
},
|
||||
{
|
||||
label: "Consulenza",
|
||||
href: "/consulenza",
|
||||
},
|
||||
{
|
||||
label: "Spedizioni",
|
||||
href: "/spedizioni",
|
||||
},
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Azienda",
|
||||
items: [
|
||||
{
|
||||
label: "Chi siamo",
|
||||
href: "/chi-siamo",
|
||||
},
|
||||
{
|
||||
label: "Resi",
|
||||
href: "#",
|
||||
},
|
||||
],
|
||||
},
|
||||
{ title: "Catalogo", items: [{ label: "Bollicine", href: "/vini" }, { label: "Rossi", href: "/vini" }, { label: "Bianchi", href: "/vini" }] },
|
||||
{ title: "Servizi", items: [{ label: "Crea Box", href: "/crea-box" }, { label: "Consulenza", href: "/consulenza" }, { label: "Spedizioni", href: "/spedizioni" }] },
|
||||
{ title: "Azienda", items: [{ label: "Chi siamo", href: "/chi-siamo" }, { label: "Resi", href: "#" }] },
|
||||
]}
|
||||
copyrightText="2026 Botte SRL — Bologna"
|
||||
/>
|
||||
|
||||
@@ -6,8 +6,9 @@ import FeatureCardTwentySix from '@/components/sections/feature/FeatureCardTwent
|
||||
import FooterBaseReveal from '@/components/sections/footer/FooterBaseReveal';
|
||||
import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay';
|
||||
import TestimonialCardSix from '@/components/sections/testimonial/TestimonialCardSix';
|
||||
import { Wine, MessageSquare } from 'lucide-react';
|
||||
|
||||
export default function LandingPage() {
|
||||
export default function GiftBoxPage() {
|
||||
return (
|
||||
<ThemeProvider
|
||||
defaultButtonVariant="directional-hover"
|
||||
@@ -25,26 +26,11 @@ export default function LandingPage() {
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarLayoutFloatingOverlay
|
||||
navItems={[
|
||||
{
|
||||
name: "Vini",
|
||||
id: "/vini",
|
||||
},
|
||||
{
|
||||
name: "Gift Box",
|
||||
id: "/gift-box",
|
||||
},
|
||||
{
|
||||
name: "Crea Box",
|
||||
id: "/crea-box",
|
||||
},
|
||||
{
|
||||
name: "Consulenza",
|
||||
id: "/consulenza",
|
||||
},
|
||||
{
|
||||
name: "Chi siamo",
|
||||
id: "/chi-siamo",
|
||||
},
|
||||
{ name: "Vini", id: "/vini" },
|
||||
{ name: "Gift Box", id: "/gift-box" },
|
||||
{ name: "Crea Box", id: "/crea-box" },
|
||||
{ name: "Consulenza", id: "/consulenza" },
|
||||
{ name: "Chi siamo", id: "/chi-siamo" },
|
||||
]}
|
||||
brandName="Botte"
|
||||
/>
|
||||
@@ -57,46 +43,8 @@ export default function LandingPage() {
|
||||
title="Personalizza i tuoi regali"
|
||||
description="Scegli il design e la selezione di vini."
|
||||
features={[
|
||||
{
|
||||
title: "Scelta etichette",
|
||||
description: "Seleziona fino a 6 bottiglie.",
|
||||
buttonIcon: "Wine",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/cheese-appetizer_23-2148145180.jpg?_wi=2",
|
||||
imageAlt: "bottle of italian wine premium label white background",
|
||||
},
|
||||
{
|
||||
title: "Biglietto dedicato",
|
||||
description: "Aggiungi un messaggio personale.",
|
||||
buttonIcon: "MessageSquare",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/fresh-maracuja-fruit-also-known-as-passion-fruit_23-2151554261.jpg?_wi=3",
|
||||
imageAlt: "bottle of italian wine premium label white background",
|
||||
},
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="testimonial" data-section="testimonial">
|
||||
<TestimonialCardSix
|
||||
animationType="slide-up"
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
title="Recensioni Gift Box"
|
||||
description="Testimonianze su chi ha ricevuto i nostri box."
|
||||
testimonials={[
|
||||
{
|
||||
id: "tg1",
|
||||
name: "Sara",
|
||||
handle: "@sara",
|
||||
testimonial: "Regalo fantastico!",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/flat-lay-cooked-mussels-slate-with-wine-bottle_23-2148234968.jpg?_wi=2",
|
||||
},
|
||||
{
|
||||
id: "tg2",
|
||||
name: "Pietro",
|
||||
handle: "@pietro",
|
||||
testimonial: "Packaging elegante.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/top-view-red-wine-with-grape-orange-cinnamon-white-stone-horizontal_176474-4507.jpg?_wi=2",
|
||||
},
|
||||
{ title: "Scelta etichette", description: "Seleziona fino a 6 bottiglie.", buttonIcon: Wine, imageSrc: "http://img.b2bpic.net/free-photo/cheese-appetizer_23-2148145180.jpg", imageAlt: "bottle of italian wine premium label white background" },
|
||||
{ title: "Biglietto dedicato", description: "Aggiungi un messaggio personale.", buttonIcon: MessageSquare, imageSrc: "http://img.b2bpic.net/free-photo/fresh-maracuja-fruit-also-known-as-passion-fruit_23-2151554261.jpg", imageAlt: "bottle of italian wine premium label white background" },
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
@@ -105,53 +53,9 @@ export default function LandingPage() {
|
||||
<FooterBaseReveal
|
||||
logoText="Botte"
|
||||
columns={[
|
||||
{
|
||||
title: "Catalogo",
|
||||
items: [
|
||||
{
|
||||
label: "Bollicine",
|
||||
href: "/vini",
|
||||
},
|
||||
{
|
||||
label: "Rossi",
|
||||
href: "/vini",
|
||||
},
|
||||
{
|
||||
label: "Bianchi",
|
||||
href: "/vini",
|
||||
},
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Servizi",
|
||||
items: [
|
||||
{
|
||||
label: "Crea Box",
|
||||
href: "/crea-box",
|
||||
},
|
||||
{
|
||||
label: "Consulenza",
|
||||
href: "/consulenza",
|
||||
},
|
||||
{
|
||||
label: "Spedizioni",
|
||||
href: "/spedizioni",
|
||||
},
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Azienda",
|
||||
items: [
|
||||
{
|
||||
label: "Chi siamo",
|
||||
href: "/chi-siamo",
|
||||
},
|
||||
{
|
||||
label: "Resi",
|
||||
href: "#",
|
||||
},
|
||||
],
|
||||
},
|
||||
{ title: "Catalogo", items: [{ label: "Bollicine", href: "/vini" }, { label: "Rossi", href: "/vini" }, { label: "Bianchi", href: "/vini" }] },
|
||||
{ title: "Servizi", items: [{ label: "Crea Box", href: "/crea-box" }, { label: "Consulenza", href: "/consulenza" }, { label: "Spedizioni", href: "/spedizioni" }] },
|
||||
{ title: "Azienda", items: [{ label: "Chi siamo", href: "/chi-siamo" }, { label: "Resi", href: "#" }] },
|
||||
]}
|
||||
copyrightText="2026 Botte SRL — Bologna"
|
||||
/>
|
||||
|
||||
294
src/app/page.tsx
294
src/app/page.tsx
@@ -9,6 +9,7 @@ import HeroSplitDoubleCarousel from '@/components/sections/hero/HeroSplitDoubleC
|
||||
import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay';
|
||||
import ProductCardTwo from '@/components/sections/product/ProductCardTwo';
|
||||
import TestimonialCardSix from '@/components/sections/testimonial/TestimonialCardSix';
|
||||
import { Award, Leaf, Headphones, Truck } from 'lucide-react';
|
||||
|
||||
export default function LandingPage() {
|
||||
return (
|
||||
@@ -28,26 +29,11 @@ export default function LandingPage() {
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarLayoutFloatingOverlay
|
||||
navItems={[
|
||||
{
|
||||
name: "Vini",
|
||||
id: "/vini",
|
||||
},
|
||||
{
|
||||
name: "Gift Box",
|
||||
id: "/gift-box",
|
||||
},
|
||||
{
|
||||
name: "Crea Box",
|
||||
id: "/crea-box",
|
||||
},
|
||||
{
|
||||
name: "Consulenza",
|
||||
id: "/consulenza",
|
||||
},
|
||||
{
|
||||
name: "Chi siamo",
|
||||
id: "/chi-siamo",
|
||||
},
|
||||
{ name: "Vini", id: "/vini" },
|
||||
{ name: "Gift Box", id: "/gift-box" },
|
||||
{ name: "Crea Box", id: "/crea-box" },
|
||||
{ name: "Consulenza", id: "/consulenza" },
|
||||
{ name: "Chi siamo", id: "/chi-siamo" },
|
||||
]}
|
||||
brandName="Botte"
|
||||
/>
|
||||
@@ -55,110 +41,24 @@ export default function LandingPage() {
|
||||
|
||||
<div id="hero" data-section="hero">
|
||||
<HeroSplitDoubleCarousel
|
||||
background={{
|
||||
variant: "plain",
|
||||
}}
|
||||
background={{ variant: "plain" }}
|
||||
title="Botte"
|
||||
description="Il meglio delle cantine italiane, consegnato a casa tua."
|
||||
leftCarouselItems={[
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/fresh-maracuja-fruit-also-known-as-passion-fruit_23-2151554261.jpg?_wi=1",
|
||||
imageAlt: "Botte Cantina 1",
|
||||
},
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/restaurant-blur-background_1385-176.jpg?_wi=1",
|
||||
imageAlt: "Restaurant ambiance",
|
||||
},
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/top-view-wine-barrel-marble-background_23-2148214872.jpg?_wi=1",
|
||||
imageAlt: "Wine barrel detail",
|
||||
},
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/neoclassical-style-interior-design-with-decor-furnishings_23-2151199432.jpg?_wi=1",
|
||||
imageAlt: "Neoclassical interior",
|
||||
},
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/high-angle-dining-table-with-grapes_23-2150312234.jpg?_wi=1",
|
||||
imageAlt: "Table with grapes",
|
||||
},
|
||||
{ imageSrc: "http://img.b2bpic.net/free-photo/fresh-maracuja-fruit-also-known-as-passion-fruit_23-2151554261.jpg", imageAlt: "Botte Cantina 1" },
|
||||
{ imageSrc: "http://img.b2bpic.net/free-photo/restaurant-blur-background_1385-176.jpg", imageAlt: "Restaurant ambiance" },
|
||||
{ imageSrc: "http://img.b2bpic.net/free-photo/top-view-wine-barrel-marble-background_23-2148214872.jpg", imageAlt: "Wine barrel detail" },
|
||||
{ imageSrc: "http://img.b2bpic.net/free-photo/neoclassical-style-interior-design-with-decor-furnishings_23-2151199432.jpg", imageAlt: "Neoclassical interior" },
|
||||
{ imageSrc: "http://img.b2bpic.net/free-photo/high-angle-dining-table-with-grapes_23-2150312234.jpg", imageAlt: "Table with grapes" },
|
||||
]}
|
||||
rightCarouselItems={[
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/beautiful-arrangement-spanish-food_23-2149157433.jpg?_wi=1",
|
||||
imageAlt: "Botte Cantina 2",
|
||||
},
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/decanter-glass-with-red-wine-table_23-2149746498.jpg?_wi=1",
|
||||
imageAlt: "Red wine decanter",
|
||||
},
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/front-view-bottle-wine-with-wineglass-light-background-alcohol-drink-bar-juice-lemonade-holiday-dinner-photo-grape_140725-160280.jpg?_wi=1",
|
||||
imageAlt: "Wine bottle and glass",
|
||||
},
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/decanter-glass-with-red-wine-assortment_23-2149746499.jpg?_wi=1",
|
||||
imageAlt: "Wine assortment",
|
||||
},
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/abstract-luxury-soft-red-background-layout-design-studio-room-business-report-with-smooth-circle-gradient-color_1258-48274.jpg",
|
||||
imageAlt: "Abstract luxury background",
|
||||
},
|
||||
]}
|
||||
buttons={[
|
||||
{
|
||||
text: "Esplora il catalogo",
|
||||
href: "/vini",
|
||||
},
|
||||
{
|
||||
text: "Crea la tua gift box",
|
||||
href: "/crea-box",
|
||||
},
|
||||
]}
|
||||
avatars={[
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/restaurant-blur-background_1385-176.jpg",
|
||||
alt: "User 1",
|
||||
},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/top-view-wine-barrel-marble-background_23-2148214872.jpg",
|
||||
alt: "User 2",
|
||||
},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/neoclassical-style-interior-design-with-decor-furnishings_23-2151199432.jpg",
|
||||
alt: "User 3",
|
||||
},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/high-angle-dining-table-with-grapes_23-2150312234.jpg",
|
||||
alt: "User 4",
|
||||
},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/decanter-glass-with-red-wine-table_23-2149746498.jpg",
|
||||
alt: "User 5",
|
||||
},
|
||||
]}
|
||||
avatarText="Oltre 500 appassionati hanno scelto Botte"
|
||||
marqueeItems={[
|
||||
{
|
||||
type: "text",
|
||||
text: "DOCG Selezionato",
|
||||
},
|
||||
{
|
||||
type: "text",
|
||||
text: "Spedizione 24h",
|
||||
},
|
||||
{
|
||||
type: "text",
|
||||
text: "Packaging Sostenibile",
|
||||
},
|
||||
{
|
||||
type: "text",
|
||||
text: "Consulenza Sommelier",
|
||||
},
|
||||
{
|
||||
type: "text",
|
||||
text: "Gift Box Personalizzata",
|
||||
},
|
||||
{ imageSrc: "http://img.b2bpic.net/free-photo/beautiful-arrangement-spanish-food_23-2149157433.jpg", imageAlt: "Botte Cantina 2" },
|
||||
{ imageSrc: "http://img.b2bpic.net/free-photo/decanter-glass-with-red-wine-table_23-2149746498.jpg", imageAlt: "Red wine decanter" },
|
||||
{ imageSrc: "http://img.b2bpic.net/free-photo/front-view-bottle-wine-with-wineglass-light-background-alcohol-drink-bar-juice-lemonade-holiday-dinner-photo-grape_140725-160280.jpg", imageAlt: "Wine bottle and glass" },
|
||||
{ imageSrc: "http://img.b2bpic.net/free-photo/decanter-glass-with-red-wine-assortment_23-2149746499.jpg", imageAlt: "Wine assortment" },
|
||||
{ imageSrc: "http://img.b2bpic.net/free-photo/abstract-luxury-soft-red-background-layout-design-studio-room-business-report-with-smooth-circle-gradient-color_1258-48274.jpg", imageAlt: "Abstract luxury background" },
|
||||
]}
|
||||
buttons={[{ text: "Esplora il catalogo", href: "/vini" }, { text: "Crea la tua gift box", href: "/crea-box" }]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
@@ -171,42 +71,10 @@ export default function LandingPage() {
|
||||
title="Vini in evidenza"
|
||||
description="Una selezione curata dalle migliori cantine italiane."
|
||||
products={[
|
||||
{
|
||||
id: "p1",
|
||||
brand: "Tenuta X",
|
||||
name: "Barolo Riserva",
|
||||
price: "45€",
|
||||
rating: 5,
|
||||
reviewCount: "12",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/flat-lay-cooked-mussels-slate-with-wine-bottle_23-2148234968.jpg?_wi=1",
|
||||
},
|
||||
{
|
||||
id: "p2",
|
||||
brand: "Cantina Y",
|
||||
name: "Chardonnay DOC",
|
||||
price: "22€",
|
||||
rating: 4,
|
||||
reviewCount: "8",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/top-view-red-wine-with-grape-orange-cinnamon-white-stone-horizontal_176474-4507.jpg?_wi=1",
|
||||
},
|
||||
{
|
||||
id: "p3",
|
||||
brand: "Vigneto Z",
|
||||
name: "Amarone Classico",
|
||||
price: "55€",
|
||||
rating: 5,
|
||||
reviewCount: "24",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/top-view-white-wine-bottle-glass-with-grape-linen-bag-white-horizontal_176474-4360.jpg",
|
||||
},
|
||||
{
|
||||
id: "p4",
|
||||
brand: "Tenuta A",
|
||||
name: "Franciacorta Satèn",
|
||||
price: "38€",
|
||||
rating: 4,
|
||||
reviewCount: "15",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/olive-oil-bottle-white-background_187299-46836.jpg",
|
||||
},
|
||||
{ id: "p1", brand: "Tenuta X", name: "Barolo Riserva", price: "45€", rating: 5, reviewCount: "12", imageSrc: "http://img.b2bpic.net/free-photo/flat-lay-cooked-mussels-slate-with-wine-bottle_23-2148234968.jpg" },
|
||||
{ id: "p2", brand: "Cantina Y", name: "Chardonnay DOC", price: "22€", rating: 4, reviewCount: "8", imageSrc: "http://img.b2bpic.net/free-photo/top-view-red-wine-with-grape-orange-cinnamon-white-stone-horizontal_176474-4507.jpg" },
|
||||
{ id: "p3", brand: "Vigneto Z", name: "Amarone Classico", price: "55€", rating: 5, reviewCount: "24", imageSrc: "http://img.b2bpic.net/free-photo/top-view-white-wine-bottle-glass-with-grape-linen-bag-white-horizontal_176474-4360.jpg" },
|
||||
{ id: "p4", brand: "Tenuta A", name: "Franciacorta Satèn", price: "38€", rating: 4, reviewCount: "15", imageSrc: "http://img.b2bpic.net/free-photo/olive-oil-bottle-white-background_187299-46836.jpg" },
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
@@ -219,34 +87,10 @@ export default function LandingPage() {
|
||||
title="Cosa dicono di noi"
|
||||
description="L'esperienza Botte raccontata dai nostri clienti."
|
||||
testimonials={[
|
||||
{
|
||||
id: "t1",
|
||||
name: "Marco Rossi",
|
||||
handle: "@mrossi",
|
||||
testimonial: "Selezione incredibile, spedizione velocissima.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/restaurant-blur-background_1385-176.jpg?_wi=2",
|
||||
},
|
||||
{
|
||||
id: "t2",
|
||||
name: "Giulia Verdi",
|
||||
handle: "@gverdi",
|
||||
testimonial: "Le gift box sono un pensiero perfetto per ogni occasione.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/top-view-wine-barrel-marble-background_23-2148214872.jpg?_wi=2",
|
||||
},
|
||||
{
|
||||
id: "t3",
|
||||
name: "Luca Bianchi",
|
||||
handle: "@lbianchi",
|
||||
testimonial: "Ottima consulenza, ho scoperto vini fantastici.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/neoclassical-style-interior-design-with-decor-furnishings_23-2151199432.jpg?_wi=2",
|
||||
},
|
||||
{
|
||||
id: "t4",
|
||||
name: "Elena Neri",
|
||||
handle: "@eneri",
|
||||
testimonial: "Imballaggio curato e sicuro, arrivato perfetto.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/high-angle-dining-table-with-grapes_23-2150312234.jpg?_wi=2",
|
||||
},
|
||||
{ id: "t1", name: "Marco Rossi", handle: "@mrossi", testimonial: "Selezione incredibile, spedizione velocissima.", imageSrc: "http://img.b2bpic.net/free-photo/restaurant-blur-background_1385-176.jpg" },
|
||||
{ id: "t2", name: "Giulia Verdi", handle: "@gverdi", testimonial: "Le gift box sono un pensiero perfetto per ogni occasione.", imageSrc: "http://img.b2bpic.net/free-photo/top-view-wine-barrel-marble-background_23-2148214872.jpg" },
|
||||
{ id: "t3", name: "Luca Bianchi", handle: "@lbianchi", testimonial: "Ottima consulenza, ho scoperto vini fantastici.", imageSrc: "http://img.b2bpic.net/free-photo/neoclassical-style-interior-design-with-decor-furnishings_23-2151199432.jpg" },
|
||||
{ id: "t4", name: "Elena Neri", handle: "@eneri", testimonial: "Imballaggio curato e sicuro, arrivato perfetto.", imageSrc: "http://img.b2bpic.net/free-photo/high-angle-dining-table-with-grapes_23-2150312234.jpg" },
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
@@ -258,34 +102,10 @@ export default function LandingPage() {
|
||||
title="Perché scegliere Botte"
|
||||
description="La nostra promessa di qualità e servizio."
|
||||
features={[
|
||||
{
|
||||
title: "Certificazione DOCG",
|
||||
description: "Solo vini a denominazione controllata.",
|
||||
buttonIcon: "Award",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/cheese-appetizer_23-2148145180.jpg?_wi=1",
|
||||
imageAlt: "bottle of italian wine premium label white background",
|
||||
},
|
||||
{
|
||||
title: "Packaging Eco",
|
||||
description: "Materiali riciclabili al 100%.",
|
||||
buttonIcon: "Leaf",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/fresh-maracuja-fruit-also-known-as-passion-fruit_23-2151554261.jpg?_wi=2",
|
||||
imageAlt: "bottle of italian wine premium label white background",
|
||||
},
|
||||
{
|
||||
title: "Supporto Dedicato",
|
||||
description: "Assistenza personale pre-acquisto.",
|
||||
buttonIcon: "Headphones",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/beautiful-arrangement-spanish-food_23-2149157433.jpg?_wi=2",
|
||||
imageAlt: "bottle of italian wine premium label white background",
|
||||
},
|
||||
{
|
||||
title: "Spedizione Veloce",
|
||||
description: "Consegna espressa in tutta Italia.",
|
||||
buttonIcon: "Truck",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/restaurant-blur-background_1385-176.jpg?_wi=3",
|
||||
imageAlt: "bottle of italian wine premium label white background",
|
||||
},
|
||||
{ title: "Certificazione DOCG", description: "Solo vini a denominazione controllata.", buttonIcon: Award, imageSrc: "http://img.b2bpic.net/free-photo/cheese-appetizer_23-2148145180.jpg", imageAlt: "bottle of italian wine premium label white background" },
|
||||
{ title: "Packaging Eco", description: "Materiali riciclabili al 100%.", buttonIcon: Leaf, imageSrc: "http://img.b2bpic.net/free-photo/fresh-maracuja-fruit-also-known-as-passion-fruit_23-2151554261.jpg", imageAlt: "bottle of italian wine premium label white background" },
|
||||
{ title: "Supporto Dedicato", description: "Assistenza personale pre-acquisto.", buttonIcon: Headphones, imageSrc: "http://img.b2bpic.net/free-photo/beautiful-arrangement-spanish-food_23-2149157433.jpg", imageAlt: "bottle of italian wine premium label white background" },
|
||||
{ title: "Spedizione Veloce", description: "Consegna espressa in tutta Italia.", buttonIcon: Truck, imageSrc: "http://img.b2bpic.net/free-photo/restaurant-blur-background_1385-176.jpg", imageAlt: "bottle of italian wine premium label white background" },
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
@@ -293,9 +113,7 @@ export default function LandingPage() {
|
||||
<div id="contact" data-section="contact">
|
||||
<ContactCenter
|
||||
useInvertedBackground={false}
|
||||
background={{
|
||||
variant: "plain",
|
||||
}}
|
||||
background={{ variant: "plain" }}
|
||||
tag="Newsletter"
|
||||
title="Resta aggiornato"
|
||||
description="Iscriviti per ricevere novità sulle nuove etichette."
|
||||
@@ -306,53 +124,9 @@ export default function LandingPage() {
|
||||
<FooterBaseReveal
|
||||
logoText="Botte"
|
||||
columns={[
|
||||
{
|
||||
title: "Catalogo",
|
||||
items: [
|
||||
{
|
||||
label: "Bollicine",
|
||||
href: "/vini",
|
||||
},
|
||||
{
|
||||
label: "Rossi",
|
||||
href: "/vini",
|
||||
},
|
||||
{
|
||||
label: "Bianchi",
|
||||
href: "/vini",
|
||||
},
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Servizi",
|
||||
items: [
|
||||
{
|
||||
label: "Crea Box",
|
||||
href: "/crea-box",
|
||||
},
|
||||
{
|
||||
label: "Consulenza",
|
||||
href: "/consulenza",
|
||||
},
|
||||
{
|
||||
label: "Spedizioni",
|
||||
href: "/spedizioni",
|
||||
},
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Azienda",
|
||||
items: [
|
||||
{
|
||||
label: "Chi siamo",
|
||||
href: "/chi-siamo",
|
||||
},
|
||||
{
|
||||
label: "Resi",
|
||||
href: "#",
|
||||
},
|
||||
],
|
||||
},
|
||||
{ title: "Catalogo", items: [{ label: "Bollicine", href: "/vini" }, { label: "Rossi", href: "/vini" }, { label: "Bianchi", href: "/vini" }] },
|
||||
{ title: "Servizi", items: [{ label: "Crea Box", href: "/crea-box" }, { label: "Consulenza", href: "/consulenza" }, { label: "Spedizioni", href: "/spedizioni" }] },
|
||||
{ title: "Azienda", items: [{ label: "Chi siamo", href: "/chi-siamo" }, { label: "Resi", href: "#" }] },
|
||||
]}
|
||||
copyrightText="2026 Botte SRL — Bologna"
|
||||
/>
|
||||
|
||||
Reference in New Issue
Block a user