Update src/app/page.tsx
This commit is contained in:
@@ -30,9 +30,9 @@ export default function LandingPage() {
|
||||
brandName="Pizzeria Contemporaneamente "
|
||||
navItems={[
|
||||
{ name: "Menu", id: "menu" },
|
||||
{ name: "About", id: "about" },
|
||||
{ name: "Reservations", id: "reservations" },
|
||||
{ name: "Contact", id: "contact" }
|
||||
{ name: "Chi Siamo", id: "about" },
|
||||
{ name: "Prenotazioni", id: "reservations" },
|
||||
{ name: "Contatti", id: "contact" }
|
||||
]}
|
||||
button={{ text: "Prenota ", href: "#reservations" }}
|
||||
animateOnLoad={true}
|
||||
@@ -59,19 +59,19 @@ export default function LandingPage() {
|
||||
|
||||
<div id="about" data-section="about">
|
||||
<TextAbout
|
||||
tag="Our Story"
|
||||
title="Three Generations of Italian Culinary Tradition"
|
||||
tag="La Nostra Storia"
|
||||
title="Tre Generazioni di Tradizione Culinaria Italiana"
|
||||
useInvertedBackground={false}
|
||||
buttons={[{ text: "Learn More", href: "#" }]}
|
||||
buttons={[{ text: "Scopri di Più", href: "#" }]}
|
||||
buttonAnimation="slide-up"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="menu" data-section="menu">
|
||||
<ProductCardOne
|
||||
title="Signature Dishes"
|
||||
description="Discover our carefully curated selection of authentic Italian specialties, each prepared with passion and premium imported ingredients."
|
||||
tag="Menu Highlights"
|
||||
title="Piatti Signature"
|
||||
description="Scopri la nostra selezione curata di autentiche specialità italiane, ognuna preparata con passione e ingredienti premium importati. Utilizziamo solo i migliori ingredienti naturali selezionati dalle regioni più rinomate d'Italia."
|
||||
tag="Highlights del Menu"
|
||||
tagAnimation="slide-up"
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
@@ -88,7 +88,7 @@ export default function LandingPage() {
|
||||
id: "branzino-grilled", name: "Branzino al Forno", price: "$24.95", imageSrc: "http://img.b2bpic.net/free-photo/raw-fresh-carpaccio-salmon-meat_74190-873.jpg", imageAlt: "Fresh grilled branzino"
|
||||
}
|
||||
]}
|
||||
buttons={[{ text: "View Full Menu", href: "#" }]}
|
||||
buttons={[{ text: "Visualizza Menu Completo", href: "#" }]}
|
||||
buttonAnimation="slide-up"
|
||||
/>
|
||||
</div>
|
||||
@@ -131,44 +131,44 @@ export default function LandingPage() {
|
||||
id: "4", title: "Worth Every Visit", quote: "We've been coming here monthly for three years. The quality never wavers, and they treat us like family.", name: "Marco Guarnieri", role: "Loyal Customer", imageSrc: "http://img.b2bpic.net/free-photo/smiling-homosexual-man-official-suit-looking-camera-close-up-shot-happy-gay-getting-dressed-wedding-ceremony-standing-hotel-room-with-his-partner-background-love-emotion-concept_74855-22675.jpg", imageAlt: "Marco Guarnieri"
|
||||
}
|
||||
]}
|
||||
buttons={[{ text: "Read More Reviews", href: "#" }]}
|
||||
buttons={[{ text: "Leggi Altre Recensioni", href: "#" }]}
|
||||
buttonAnimation="slide-up"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="features" data-section="features">
|
||||
<FeatureCardSixteen
|
||||
title="Why Choose Trattoria Giuseppe"
|
||||
description="Experience the difference that authentic Italian hospitality and premium quality make."
|
||||
title="Perché Scegliere Trattoria Giuseppe"
|
||||
description="Sperimenta la differenza che l'autentica ospitalità italiana e gli ingredienti di qualità premium fanno. Siamo orgogliosi di utilizzare solo i migliori ingredienti naturali provenienti dalle regioni più rinomate d'Italia."
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
tag="Our Commitment"
|
||||
tag="Il Nostro Impegno"
|
||||
tagAnimation="slide-up"
|
||||
negativeCard={{
|
||||
items: [
|
||||
"Mass-produced frozen ingredients", "Rushed preparation techniques", "Inconsistent quality", "Generic menu offerings"
|
||||
"Ingredienti congelati prodotti in massa", "Tecniche di preparazione affrettate", "Qualità incoerente", "Offerte di menu generiche"
|
||||
]
|
||||
}}
|
||||
positiveCard={{
|
||||
items: [
|
||||
"Premium imported Italian ingredients", "Traditional handcrafted recipes", "Consistent culinary excellence", "Authentic regional specialties", "Expert sommelier wine pairings", "Personalized dining service"
|
||||
"Ingredienti italiani premium importati", "Ricette tradizionali artigianali", "Eccellenza culinaria coerente", "Specialità regionali autentiche", "Abbinamenti vini di sommelier esperti", "Servizio di ristorazione personalizzato"
|
||||
]
|
||||
}}
|
||||
animationType="slide-up"
|
||||
buttons={[{ text: "Reserve Now", href: "#reservations" }]}
|
||||
buttons={[{ text: "Prenota Ora", href: "#reservations" }]}
|
||||
buttonAnimation="slide-up"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="reservations" data-section="reservations">
|
||||
<ContactText
|
||||
text="Ready to experience authentic Italian dining? Book your table now and discover why Trattoria Giuseppe is the preferred destination for Italian cuisine. Our welcoming staff looks forward to serving you."
|
||||
text="Pronto a provare l'autentica cucina italiana? Prenota il tuo tavolo ora e scopri perché Trattoria Giuseppe è la destinazione preferita per la cucina italiana. Vogliamo servirti con la massima dedizione. Utilizziamo solo ingredienti di qualità superiore per garantire un'esperienza gastronomica indimenticabile."
|
||||
animationType="background-highlight"
|
||||
background={{ variant: "animated-grid" }}
|
||||
useInvertedBackground={false}
|
||||
buttons={[
|
||||
{ text: "Reserve a Table", href: "#" },
|
||||
{ text: "Call Us", href: "tel:+1-555-123-4567" }
|
||||
{ text: "Prenota un Tavolo", href: "#" },
|
||||
{ text: "Chiamaci", href: "tel:+1-555-123-4567" }
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
@@ -176,8 +176,8 @@ export default function LandingPage() {
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterLogoReveal
|
||||
logoText="Trattoria Giuseppe"
|
||||
leftLink={{ text: "Privacy Policy", href: "#" }}
|
||||
rightLink={{ text: "Contact Info", href: "#" }}
|
||||
leftLink={{ text: "Politica sulla Privacy", href: "#" }}
|
||||
rightLink={{ text: "Informazioni di Contatto", href: "#" }}
|
||||
/>
|
||||
</div>
|
||||
</ThemeProvider>
|
||||
|
||||
Reference in New Issue
Block a user