Update src/app/page.tsx
This commit is contained in:
@@ -9,9 +9,9 @@ import ProductCardOne from "@/components/sections/product/ProductCardOne";
|
|||||||
import MetricCardFourteen from "@/components/sections/metrics/MetricCardFourteen";
|
import MetricCardFourteen from "@/components/sections/metrics/MetricCardFourteen";
|
||||||
import TestimonialCardTen from "@/components/sections/testimonial/TestimonialCardTen";
|
import TestimonialCardTen from "@/components/sections/testimonial/TestimonialCardTen";
|
||||||
import FeatureCardSixteen from "@/components/sections/feature/FeatureCardSixteen";
|
import FeatureCardSixteen from "@/components/sections/feature/FeatureCardSixteen";
|
||||||
import ContactText from "@/components/sections/contact/ContactText";
|
import ContactCenter from "@/components/sections/contact/ContactCenter";
|
||||||
import FooterLogoReveal from "@/components/sections/footer/FooterLogoReveal";
|
import FooterSimple from "@/components/sections/footer/FooterSimple";
|
||||||
import { Sparkles } from "lucide-react";
|
import { Sparkles, Mail, Phone, MapPin } from "lucide-react";
|
||||||
|
|
||||||
export default function ItalianRestaurantPage() {
|
export default function ItalianRestaurantPage() {
|
||||||
return (
|
return (
|
||||||
@@ -38,7 +38,7 @@ export default function ItalianRestaurantPage() {
|
|||||||
{ name: "Recensioni", id: "testimonials" }
|
{ name: "Recensioni", id: "testimonials" }
|
||||||
]}
|
]}
|
||||||
button={{
|
button={{
|
||||||
text: "Prenota un Tavolo", href: "contact"
|
text: "Prenota un Tavolo", href: "#contact"
|
||||||
}}
|
}}
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
@@ -53,8 +53,8 @@ export default function ItalianRestaurantPage() {
|
|||||||
imageSrc="https://img.b2bpic.net/premium-photo/tasted-famous-italian-food_119101-260.jpg?id=6608694"
|
imageSrc="https://img.b2bpic.net/premium-photo/tasted-famous-italian-food_119101-260.jpg?id=6608694"
|
||||||
imageAlt="Sala da pranzo elegante di un ristorante italiano"
|
imageAlt="Sala da pranzo elegante di un ristorante italiano"
|
||||||
buttons={[
|
buttons={[
|
||||||
{ text: "Prenota Ora", href: "contact" },
|
{ text: "Prenota Ora", href: "#contact" },
|
||||||
{ text: "Vedi il Menu", href: "menu" }
|
{ text: "Vedi il Menu", href: "#menu" }
|
||||||
]}
|
]}
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
@@ -75,13 +75,13 @@ export default function ItalianRestaurantPage() {
|
|||||||
description="Esplora i nostri piatti signature, realizzati con cura usando ricette italiane autentiche e ingredienti selezionati."
|
description="Esplora i nostri piatti signature, realizzati con cura usando ricette italiane autentiche e ingredienti selezionati."
|
||||||
products={[
|
products={[
|
||||||
{
|
{
|
||||||
id: "1", name: "Tagliatelle al Ragù", price: "28€", imageSrc: "https://img.b2bpic.net/free-photo/italian-spaghetti-tomato-sauce-with-parmesan-inside-blue-plate-top-view_114579-1556.jpg", imageAlt: "Tagliatelle al Ragù"
|
id: "1", name: "Tagliatelle al Ragù", price: "28€", imageSrc: "https://img.b2bpic.net/free-photo/italian-spaghetti-tomato-sauce-with-parmesan-inside-blue-plate-top-view_114579-1556.jpg", imageAlt: "Tagliatelle al Ragù"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
id: "2", name: "Risotto ai Funghi", price: "26€", imageSrc: "https://img.b2bpic.net/free-photo/pasta-tomato-sauce-with-chopped-parmesan-tomato-basilic_114579-919.jpg", imageAlt: "Risotto ai funghi cremoso"
|
id: "2", name: "Risotto ai Funghi", price: "26€", imageSrc: "https://img.b2bpic.net/free-photo/pasta-tomato-sauce-with-chopped-parmesan-tomato-basilic_114579-919.jpg", imageAlt: "Risotto ai funghi cremoso"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
id: "3", name: "Tiramisu Tradizionale", price: "12€", imageSrc: "https://img.b2bpic.net/free-photo/top-view-chicken-spaghetti-with-bell-peppers-parsley_140725-312.jpg", imageAlt: "Tiramisu classico"
|
id: "3", name: "Tiramisu Tradizionale", price: "12€", imageSrc: "https://img.b2bpic.net/free-photo/top-view-chicken-spaghetti-with-bell-peppers-parsley_140725-312.jpg", imageAlt: "Tiramisu classico"
|
||||||
}
|
}
|
||||||
]}
|
]}
|
||||||
gridVariant="three-columns-all-equal-width"
|
gridVariant="three-columns-all-equal-width"
|
||||||
@@ -97,10 +97,10 @@ export default function ItalianRestaurantPage() {
|
|||||||
tag="I Nostri Numeri"
|
tag="I Nostri Numeri"
|
||||||
metrics={[
|
metrics={[
|
||||||
{
|
{
|
||||||
id: "1", value: "25+", description: "Anni di eccellenza nella cucina italiana e nell'ospitalità"
|
id: "1", value: "25+", description: "Anni di eccellenza nella cucina italiana e nell'ospitalità"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
id: "2", value: "50.000+", description: "Clienti felici che hanno vissuto esperienze culinarie memorabili al Bottegone del Vino"
|
id: "2", value: "50.000+", description: "Clienti felici che hanno vissuto esperienze culinarie memorabili al Bottegone del Vino"
|
||||||
}
|
}
|
||||||
]}
|
]}
|
||||||
metricsAnimation="slide-up"
|
metricsAnimation="slide-up"
|
||||||
@@ -114,16 +114,13 @@ export default function ItalianRestaurantPage() {
|
|||||||
description="Vivi il calore e l'autenticità che i nostri visitatori apprezzano del Bottegone del Vino."
|
description="Vivi il calore e l'autenticità che i nostri visitatori apprezzano del Bottegone del Vino."
|
||||||
testimonials={[
|
testimonials={[
|
||||||
{
|
{
|
||||||
id: "1", title: "Una Serata Indimenticabile", quote: "La pasta era assolutamente divina! Ogni boccone mi ha riportato dritto in Italia. L'atmosfera, il servizio, tutto perfetto. Torneremo sicuramente.", name: "Maria Rossi", role: "Critico Gastronomico", imageSrc: "https://img.b2bpic.net/free-photo/culinary-expert-commercial-kitchen-prepares-dish-with-fresh-basil-parsley_482257-124314.jpg", imageAlt: "Maria Rossi"
|
id: "1", title: "Una Serata Indimenticabile", quote: "La pasta era assolutamente divina! Ogni boccone mi ha riportato dritto in Italia. L'atmosfera, il servizio, tutto perfetto. Torneremo sicuramente.", name: "Maria Rossi", role: "Critico Gastronomico", imageSrc: "https://img.b2bpic.net/free-photo/culinary-expert-commercial-kitchen-prepares-dish-with-fresh-basil-parsley_482257-124314.jpg", imageAlt: "Maria Rossi"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
id: "2", title: "Magia Italiana Autentica", quote: "È il ristorante italiano più autentico che abbia trovato in città. Lo chef conosce chiaramente il suo mestiere. Un vero gioiello!", name: "Giovanni Ferrari", role: "Appassionato di Ristorazione", imageSrc: "https://img.b2bpic.net/free-photo/chef-white-uniform-garnishes-plated-dish-with-herbs-spices_482257-121123.jpg", imageAlt: "Giovanni Ferrari"
|
id: "2", title: "Magia Italiana Autentica", quote: "È il ristorante italiano più autentico che abbia trovato in città. Lo chef conosce chiaramente il suo mestiere. Un vero gioiello!", name: "Giovanni Ferrari", role: "Appassionato di Ristorazione", imageSrc: "https://img.b2bpic.net/free-photo/chef-white-uniform-garnishes-plated-dish-with-herbs-spices_482257-121123.jpg", imageAlt: "Giovanni Ferrari"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
id: "3", title: "Perfetto per Occasioni Speciali", quote: "Abbiamo festeggiato il nostro anniversario qui ed è stato spettacolare. L'attenzione ai dettagli, i vini, il calore dello staff – semplicemente straordinario.", name: "Elena Marchetti", role: "Cliente", imageSrc: "https://img.b2bpic.net/free-photo/close-up-chef-cooking-restaurant-kitchen_329181-16131.jpg", imageAlt: "Elena Marchetti"
|
id: "3", title: "Perfetto per Occasioni Speciali", quote: "Abbiamo festeggiato il nostro anniversario qui ed è stato spettacolare. L'attenzione ai dettagli, i vini, il calore dello staff – semplicemente straordinario.", name: "Elena Marchetti", role: "Cliente", imageSrc: "https://img.b2bpic.net/free-photo/close-up-chef-cooking-restaurant-kitchen_329181-16131.jpg", imageAlt: "Elena Marchetti"
|
||||||
},
|
|
||||||
{
|
|
||||||
id: "4", title: "Vale Ogni Visita", quote: "Vengo al Bottegone del Vino da tre anni. La costanza, la qualità e la passione sono immutate. È diventata la mia seconda casa.", name: "Antonio Bianchi", role: "Cliente Abituale", imageSrc: "https://img.b2bpic.net/free-photo/chef-workg-together-professional-kitchen_23-2149727992.jpg", imageAlt: "Antonio Bianchi"
|
|
||||||
}
|
}
|
||||||
]}
|
]}
|
||||||
textboxLayout="default"
|
textboxLayout="default"
|
||||||
@@ -139,35 +136,40 @@ export default function ItalianRestaurantPage() {
|
|||||||
textboxLayout="default"
|
textboxLayout="default"
|
||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
negativeCard={{
|
negativeCard={{
|
||||||
items: [
|
items: ["Ingredienti surgelati", "Sapori incoerenti", "Servizio frettoloso", "Selezione vini limitata"]
|
||||||
"Ingredienti surgelati", "Sapori incoerenti", "Servizio frettoloso", "Selezione vini limitata"
|
|
||||||
]
|
|
||||||
}}
|
}}
|
||||||
positiveCard={{
|
positiveCard={{
|
||||||
items: [
|
items: ["Ingredienti freschi selezionati quotidianamente", "Eccellenza costante in ogni piatto", "Servizio attento e senza fretta", "Selezione curata di vini italiani"]
|
||||||
"Ingredienti freschi selezionati quotidianamente", "Eccellenza costante in ogni piatto", "Servizio attento e senza fretta", "Selezione curata di vini italiani"
|
|
||||||
]
|
|
||||||
}}
|
}}
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div id="contact" data-section="contact">
|
<div id="contact" data-section="contact">
|
||||||
<ContactText
|
<ContactCenter
|
||||||
text="Pronto a vivere un'autentica esperienza italiana? Prenota il tuo tavolo al Bottegone del Vino e unisciti a noi per una serata di eccellenza culinaria."
|
tag="Contatti"
|
||||||
|
tagIcon={MapPin}
|
||||||
|
title="Trovaci a Lugano"
|
||||||
|
description="Siamo situati nel cuore di Lugano. Vi aspettiamo per un viaggio sensoriale tra i sapori della nostra tradizione. Contattaci per prenotazioni o informazioni."
|
||||||
background={{ variant: "plain" }}
|
background={{ variant: "plain" }}
|
||||||
buttons={[
|
useInvertedBackground={true}
|
||||||
{ text: "Prenota", href: "#" },
|
|
||||||
{ text: "Contattaci", href: "mailto:info@bottegone.it" }
|
|
||||||
]}
|
|
||||||
useInvertedBackground={false}
|
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div id="footer" data-section="footer">
|
<div id="footer" data-section="footer">
|
||||||
<FooterLogoReveal
|
<FooterSimple
|
||||||
logoText="Bottegone del Vino"
|
columns={[
|
||||||
leftLink={{ text: "Privacy Policy", href: "#privacy" }}
|
{
|
||||||
rightLink={{ text: "Contatti", href: "#contact" }}
|
title: "Info", items: [{ label: "Contattaci", href: "mailto:info@bottegone.it" }, { label: "Chiama ora", href: "tel:+41910000000" }]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
title: "Posizione", items: [{ label: "Via Nassa 1, 6900 Lugano, CH" }]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
title: "Social", items: [{ label: "Instagram" }, { label: "Facebook" }]
|
||||||
|
}
|
||||||
|
]}
|
||||||
|
bottomLeftText="© 2024 Bottegone del Vino"
|
||||||
|
bottomRightText="All Rights Reserved"
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
</ReactLenis>
|
</ReactLenis>
|
||||||
|
|||||||
Reference in New Issue
Block a user