Merge version_1 into main #2

Merged
bender merged 4 commits from version_1 into main 2026-04-07 17:24:57 +00:00
4 changed files with 73 additions and 441 deletions

View File

@@ -7,7 +7,7 @@ import FooterBaseReveal from '@/components/sections/footer/FooterBaseReveal';
import MetricSplitMediaAbout from '@/components/sections/about/MetricSplitMediaAbout';
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
export default function LandingPage() {
export default function AboutPage() {
return (
<ThemeProvider
defaultButtonVariant="expand-hover"
@@ -25,24 +25,13 @@ export default function LandingPage() {
<div id="nav" data-section="nav">
<NavbarLayoutFloatingInline
navItems={[
{
name: "Home",
id: "/",
},
{
name: "Menù",
id: "/menu",
},
{
name: "Il Locale",
id: "/about",
},
{
name: "Prenota",
id: "/contact",
},
{ name: "Home", id: "/" },
{ name: "Menù", id: "/menu" },
{ name: "Il Locale", id: "/about" },
{ name: "Prenota", id: "/contact" },
]}
brandName="L'Acquolina"
button={{ text: "Prenota", href: "/contact" }}
/>
</div>
@@ -52,88 +41,23 @@ export default function LandingPage() {
title="La stessa squadra, la stessa passione."
description="LAcquolina In Bocca nasce come ristorante di quartiere, pensato per chi vuole mangiare bene senza complicazioni. Nel tempo siamo cresciuti, ma non abbiamo mai cambiato ciò che conta: la gentilezza e la voglia di farvi sentire a casa."
metrics={[
{
value: "10+",
title: "Anni di attività",
},
{
value: "5000+",
title: "Clienti felici",
},
{
value: "100%",
title: "Passione",
},
{ value: "10+", title: "Anni di attività" },
{ value: "5000+", title: "Clienti felici" },
{ value: "100%", title: "Passione" },
]}
imageSrc="http://img.b2bpic.net/free-photo/female-sommelier_1098-14998.jpg?_wi=2"
imageSrc="http://img.b2bpic.net/free-photo/female-sommelier_1098-14998.jpg"
mediaAnimation="slide-up"
metricsAnimation="slide-up"
/>
</div>
<div id="faq" data-section="faq">
<FaqSplitMedia
textboxLayout="default"
useInvertedBackground={false}
title="Curiosità sul locale"
description="Tutto quello che c'è da sapere sulla nostra storia."
imageSrc="http://img.b2bpic.net/free-photo/female-sommelier_1098-14998.jpg?_wi=3"
faqs={[
{
id: "f1",
title: "Avete opzioni vegetariane?",
content: "Certamente, offriamo diversi piatti vegetariani ogni giorno.",
},
{
id: "f2",
title: "Accettate cani?",
content: "Sì, i vostri amici a quattro zampe sono i benvenuti.",
},
]}
mediaAnimation="slide-up"
faqsAnimation="slide-up"
/>
</div>
<div id="footer" data-section="footer">
<FooterBaseReveal
logoText="L'Acquolina In Bocca"
columns={[
{
title: "Info",
items: [
{
label: "Via Roma, 1, Milano",
href: "#",
},
{
label: "02 1234567",
href: "tel:+39021234567",
},
],
},
{
title: "Menù",
items: [
{
label: "Pranzo di lavoro",
href: "/menu",
},
{
label: "Specialità",
href: "/menu",
},
],
},
{
title: "Prenota",
items: [
{
label: "Contattaci",
href: "/contact",
},
],
},
{ title: "Info", items: [{ label: "Via Roma, 1, Milano", href: "#" }, { label: "02 1234567", href: "tel:+39021234567" }] },
{ title: "Menù", items: [{ label: "Pranzo di lavoro", href: "/menu" }, { label: "Specialità", href: "/menu" }] },
{ title: "Prenota", items: [{ label: "Contattaci", href: "/contact" }] },
]}
copyrightText="© 2024 L'Acquolina In Bocca. Tutti i diritti riservati."
/>

View File

@@ -8,7 +8,7 @@ import MetricCardOne from '@/components/sections/metrics/MetricCardOne';
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
import { MapPin, Sun } from "lucide-react";
export default function LandingPage() {
export default function ContactPage() {
return (
<ThemeProvider
defaultButtonVariant="expand-hover"
@@ -26,70 +26,24 @@ export default function LandingPage() {
<div id="nav" data-section="nav">
<NavbarLayoutFloatingInline
navItems={[
{
name: "Home",
id: "/",
},
{
name: "Menù",
id: "/menu",
},
{
name: "Il Locale",
id: "/about",
},
{
name: "Prenota",
id: "/contact",
},
{ name: "Home", id: "/" },
{ name: "Menù", id: "/menu" },
{ name: "Il Locale", id: "/about" },
{ name: "Prenota", id: "/contact" },
]}
brandName="L'Acquolina"
button={{ text: "Prenota", href: "/contact" }}
/>
</div>
<div id="contact" data-section="contact">
<ContactText
useInvertedBackground={true}
background={{
variant: "gradient-bars",
}}
background={{ variant: "gradient-bars" }}
text="Prenota il tuo tavolo in pochi secondi. Chiamaci o scrivici su WhatsApp per gruppi numerosi!"
buttons={[
{
text: "Chiama ora",
href: "tel:+39021234567",
},
{
text: "WhatsApp",
href: "https://wa.me/39021234567",
},
]}
/>
</div>
<div id="metric" data-section="metric">
<MetricCardOne
animationType="slide-up"
textboxLayout="default"
gridVariant="uniform-all-items-equal"
useInvertedBackground={false}
title="Dove trovarci"
description="Siamo sempre pronti ad accoglierti con un sorriso."
metrics={[
{
id: "m1",
value: "Milano",
title: "Città",
description: "Zona centrale facilmente raggiungibile.",
icon: MapPin,
},
{
id: "m2",
value: "12:00",
title: "Apertura Pranzo",
description: "Sempre freschi per il tuo break.",
icon: Sun,
},
{ text: "Chiama ora", href: "tel:+39021234567" },
{ text: "WhatsApp", href: "https://wa.me/39021234567" },
]}
/>
</div>
@@ -98,41 +52,9 @@ export default function LandingPage() {
<FooterBaseReveal
logoText="L'Acquolina In Bocca"
columns={[
{
title: "Info",
items: [
{
label: "Via Roma, 1, Milano",
href: "#",
},
{
label: "02 1234567",
href: "tel:+39021234567",
},
],
},
{
title: "Menù",
items: [
{
label: "Pranzo di lavoro",
href: "/menu",
},
{
label: "Specialità",
href: "/menu",
},
],
},
{
title: "Prenota",
items: [
{
label: "Contattaci",
href: "/contact",
},
],
},
{ title: "Info", items: [{ label: "Via Roma, 1, Milano", href: "#" }, { label: "02 1234567", href: "tel:+39021234567" }] },
{ title: "Menù", items: [{ label: "Pranzo di lavoro", href: "/menu" }, { label: "Specialità", href: "/menu" }] },
{ title: "Prenota", items: [{ label: "Contattaci", href: "/contact" }] },
]}
copyrightText="© 2024 L'Acquolina In Bocca. Tutti i diritti riservati."
/>

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 MenuPage() {
return (
<ThemeProvider
defaultButtonVariant="expand-hover"
@@ -25,24 +25,13 @@ export default function LandingPage() {
<div id="nav" data-section="nav">
<NavbarLayoutFloatingInline
navItems={[
{
name: "Home",
id: "/",
},
{
name: "Menù",
id: "/menu",
},
{
name: "Il Locale",
id: "/about",
},
{
name: "Prenota",
id: "/contact",
},
{ name: "Home", id: "/" },
{ name: "Menù", id: "/menu" },
{ name: "Il Locale", id: "/about" },
{ name: "Prenota", id: "/contact" },
]}
brandName="L'Acquolina"
button={{ text: "Prenota", href: "/contact" }}
/>
</div>
@@ -53,120 +42,25 @@ export default function LandingPage() {
gridVariant="two-columns-alternating-heights"
useInvertedBackground={true}
products={[
{
id: "p1",
name: "Pranzo di Lavoro",
price: "13 €",
variant: "Primo + Secondo + Contorno",
imageSrc: "http://img.b2bpic.net/free-photo/dining-table-with-chairs-tableware_140725-7823.jpg?_wi=9",
},
{
id: "p2",
name: "Pizza Diavola",
price: "9 €",
variant: "Impasto sottile piccante",
imageSrc: "http://img.b2bpic.net/free-photo/dining-table-with-chairs-tableware_140725-7823.jpg?_wi=10",
},
{
id: "p3",
name: "Bistecca alla Griglia",
price: "18 €",
variant: "Carne selezionata",
imageSrc: "http://img.b2bpic.net/free-photo/dining-table-with-chairs-tableware_140725-7823.jpg?_wi=11",
},
{
id: "p4",
name: "Fettuccine ai Funghi",
price: "12 €",
variant: "Pasta fresca",
imageSrc: "http://img.b2bpic.net/free-photo/dining-table-with-chairs-tableware_140725-7823.jpg?_wi=12",
},
{
id: "p5",
name: "Dolce del Giorno",
price: "6 €",
variant: "Fatto in casa",
imageSrc: "http://img.b2bpic.net/free-photo/dining-table-with-chairs-tableware_140725-7823.jpg?_wi=13",
},
{
id: "p6",
name: "Tagliata",
price: "16 €",
variant: "Rucola e grana",
imageSrc: "http://img.b2bpic.net/free-photo/dining-table-with-chairs-tableware_140725-7823.jpg?_wi=14",
},
{ id: "p1", name: "Pranzo di Lavoro", price: "13 €", variant: "Primo + Secondo + Contorno", imageSrc: "http://img.b2bpic.net/free-photo/dining-table-with-chairs-tableware_140725-7823.jpg" },
{ id: "p2", name: "Pizza Diavola", price: "9 €", variant: "Impasto sottile piccante", imageSrc: "http://img.b2bpic.net/free-photo/dining-table-with-chairs-tableware_140725-7823.jpg" },
{ id: "p3", name: "Bistecca alla Griglia", price: "18 €", variant: "Carne selezionata", imageSrc: "http://img.b2bpic.net/free-photo/dining-table-with-chairs-tableware_140725-7823.jpg" },
{ id: "p4", name: "Fettuccine ai Funghi", price: "12 €", variant: "Pasta fresca", imageSrc: "http://img.b2bpic.net/free-photo/dining-table-with-chairs-tableware_140725-7823.jpg" },
{ id: "p5", name: "Dolce del Giorno", price: "6 €", variant: "Fatto in casa", imageSrc: "http://img.b2bpic.net/free-photo/dining-table-with-chairs-tableware_140725-7823.jpg" },
{ id: "p6", name: "Tagliata", price: "16 €", variant: "Rucola e grana", imageSrc: "http://img.b2bpic.net/free-photo/dining-table-with-chairs-tableware_140725-7823.jpg" },
]}
title="Il Menù"
description="Piatti che cambiano, qualità che resta."
/>
</div>
<div id="feature" data-section="feature">
<FeatureCardTwentyNine
animationType="slide-up"
textboxLayout="default"
gridVariant="uniform-all-items-equal"
useInvertedBackground={false}
title="Ingredienti di Qualità"
description="Selezioniamo solo il meglio per le nostre ricette quotidiane."
features={[
{
title: "Pasta Fresca",
description: "Fatta in casa ogni mattina con farina di alta qualità.",
imageSrc: "http://img.b2bpic.net/free-photo/dining-table-with-chairs-tableware_140725-7823.jpg?_wi=15",
titleIconSrc: "Utensils",
buttonText: "Vedi piatti",
},
{
title: "Carni Scelte",
description: "Soltanto tagli selezionati e di provenienza garantita.",
imageSrc: "http://img.b2bpic.net/free-photo/dining-table-with-chairs-tableware_140725-7823.jpg?_wi=16",
titleIconSrc: "Beef",
buttonText: "Vedi piatti",
},
]}
/>
</div>
<div id="footer" data-section="footer">
<FooterBaseReveal
logoText="L'Acquolina In Bocca"
columns={[
{
title: "Info",
items: [
{
label: "Via Roma, 1, Milano",
href: "#",
},
{
label: "02 1234567",
href: "tel:+39021234567",
},
],
},
{
title: "Menù",
items: [
{
label: "Pranzo di lavoro",
href: "/menu",
},
{
label: "Specialità",
href: "/menu",
},
],
},
{
title: "Prenota",
items: [
{
label: "Contattaci",
href: "/contact",
},
],
},
{ title: "Info", items: [{ label: "Via Roma, 1, Milano", href: "#" }, { label: "02 1234567", href: "tel:+39021234567" }] },
{ title: "Menù", items: [{ label: "Pranzo di lavoro", href: "/menu" }, { label: "Specialità", href: "/menu" }] },
{ title: "Prenota", items: [{ label: "Contattaci", href: "/contact" }] },
]}
copyrightText="© 2024 L'Acquolina In Bocca. Tutti i diritti riservati."
/>

View File

@@ -29,45 +29,26 @@ export default function LandingPage() {
<div id="nav" data-section="nav">
<NavbarLayoutFloatingInline
navItems={[
{
name: "Home",
id: "/",
},
{
name: "Menù",
id: "/menu",
},
{
name: "Il Locale",
id: "/about",
},
{
name: "Prenota",
id: "/contact",
},
{ name: "Home", id: "/" },
{ name: "Menù", id: "/menu" },
{ name: "Il Locale", id: "/about" },
{ name: "Prenota", id: "/contact" },
]}
brandName="L'Acquolina"
button={{ text: "Prenota", href: "/contact" }}
/>
</div>
<div id="hero" data-section="hero">
<HeroBillboardScroll
background={{
variant: "gradient-bars",
}}
background={{ variant: "gradient-bars" }}
title="LAcquolina In Bocca"
description="Dal pranzo di lavoro alla cena tra amici: piatti fatti con passione, prezzi onesti e un sorriso che ti ricorda perché torni."
buttons={[
{
text: "Prenota un tavolo",
href: "/contact",
},
{
text: "Scopri il menù",
href: "/menu",
},
{ text: "Prenota un tavolo", href: "/contact" },
{ text: "Scopri il menù", href: "/menu" },
]}
imageSrc="http://img.b2bpic.net/free-photo/dining-table-with-chairs-tableware_140725-7823.jpg?_wi=1"
imageSrc="http://img.b2bpic.net/free-photo/dining-table-with-chairs-tableware_140725-7823.jpg"
imageAlt="ristorante elegante tavola apparecchiata"
/>
</div>
@@ -79,55 +60,25 @@ export default function LandingPage() {
useInvertedBackground={true}
features={[
{
title: "Accoglienza impeccabile",
description: "Anche in gruppi numerosi troviamo il modo di farvi stare vicini e comodi.",
icon: Users,
title: "Accoglienza impeccabile", description: "Anche in gruppi numerosi troviamo il modo di farvi stare vicini e comodi.", icon: Users,
mediaItems: [
{
imageSrc: "http://img.b2bpic.net/free-photo/dining-table-with-chairs-tableware_140725-7823.jpg?_wi=2",
imageAlt: "ristorante elegante",
},
{
imageSrc: "http://img.b2bpic.net/free-photo/dining-table-with-chairs-tableware_140725-7823.jpg?_wi=3",
imageAlt: "atmosfera ristorante",
},
],
imageSrc: "http://img.b2bpic.net/free-photo/dining-table-with-chairs-tableware_140725-7823.jpg?_wi=4",
imageAlt: "ristorante elegante tavola apparecchiata",
{ imageSrc: "http://img.b2bpic.net/free-photo/dining-table-with-chairs-tableware_140725-7823.jpg", imageAlt: "ristorante elegante" },
{ imageSrc: "http://img.b2bpic.net/free-photo/dining-table-with-chairs-tableware_140725-7823.jpg", imageAlt: "atmosfera ristorante" },
]
},
{
title: "Pranzo di lavoro",
description: "Menù completi con primo, secondo, contorno e bevanda a prezzi onesti.",
icon: Clock,
title: "Pranzo di lavoro", description: "Menù completi con primo, secondo, contorno e bevanda a prezzi onesti.", icon: Clock,
mediaItems: [
{
imageSrc: "http://img.b2bpic.net/free-photo/dining-table-with-chairs-tableware_140725-7823.jpg?_wi=5",
imageAlt: "pranzo veloce",
},
{
imageSrc: "http://img.b2bpic.net/free-photo/dining-table-with-chairs-tableware_140725-7823.jpg?_wi=6",
imageAlt: "tavola apparecchiata",
},
],
imageSrc: "http://img.b2bpic.net/free-photo/female-sommelier_1098-14998.jpg?_wi=1",
imageAlt: "personale ristorante italiano sorridente",
{ imageSrc: "http://img.b2bpic.net/free-photo/dining-table-with-chairs-tableware_140725-7823.jpg", imageAlt: "pranzo veloce" },
{ imageSrc: "http://img.b2bpic.net/free-photo/dining-table-with-chairs-tableware_140725-7823.jpg", imageAlt: "tavola apparecchiata" },
]
},
{
title: "Sapori memorabili",
description: "Impasto sottile, bistecca cotta con passione e dolci che restano nel cuore.",
icon: Utensils,
title: "Sapori memorabili", description: "Impasto sottile, bistecca cotta con passione e dolci che restano nel cuore.", icon: Utensils,
mediaItems: [
{
imageSrc: "http://img.b2bpic.net/free-photo/dining-table-with-chairs-tableware_140725-7823.jpg?_wi=7",
imageAlt: "piatto gourmet",
},
{
imageSrc: "http://img.b2bpic.net/free-photo/dining-table-with-chairs-tableware_140725-7823.jpg?_wi=8",
imageAlt: "piatto di pasta",
},
],
imageSrc: "http://img.b2bpic.net/free-photo/portrait-waitress-standing-counter_1170-657.jpg?_wi=1",
imageAlt: "cliente ristorante felice sorridente",
{ imageSrc: "http://img.b2bpic.net/free-photo/dining-table-with-chairs-tableware_140725-7823.jpg", imageAlt: "piatto gourmet" },
{ imageSrc: "http://img.b2bpic.net/free-photo/dining-table-with-chairs-tableware_140725-7823.jpg", imageAlt: "piatto di pasta" },
]
},
]}
title="Perché ci scelgono"
@@ -141,41 +92,11 @@ export default function LandingPage() {
textboxLayout="split"
useInvertedBackground={false}
testimonials={[
{
id: "1",
name: "Giulia R.",
handle: "@giulir",
testimonial: "Personale educato, la proprietaria è gentilissima. Torno sempre volentieri!",
imageSrc: "http://img.b2bpic.net/free-photo/portrait-waitress-standing-counter_1170-657.jpg?_wi=2",
},
{
id: "2",
name: "Marco V.",
handle: "@marcov",
testimonial: "Porzioni abbondanti e bistecca eccezionale. Il mio posto fisso!",
imageSrc: "http://img.b2bpic.net/free-photo/brunette-man-eating-green-red-apples_114579-41998.jpg?_wi=1",
},
{
id: "3",
name: "Elena S.",
handle: "@elenas",
testimonial: "Pizza sottile, leggera e ricca di sapore. La diavola è da provare.",
imageSrc: "http://img.b2bpic.net/free-photo/close-up-smiling-young-woman-amusement-park_23-2147910756.jpg",
},
{
id: "4",
name: "Luca B.",
handle: "@lucab",
testimonial: "Servizio rapido a pranzo e qualità eccellente. Consigliatissimo.",
imageSrc: "http://img.b2bpic.net/free-photo/portrait-waitress-standing-counter_1170-657.jpg?_wi=3",
},
{
id: "5",
name: "Sara D.",
handle: "@sarad",
testimonial: "Dolci della casa superbi. Locale sempre pulito e accogliente.",
imageSrc: "http://img.b2bpic.net/free-photo/brunette-man-eating-green-red-apples_114579-41998.jpg?_wi=2",
},
{ id: "1", name: "Giulia R.", handle: "@giulir", testimonial: "Personale educato, la proprietaria è gentilissima. Torno sempre volentieri!", imageSrc: "http://img.b2bpic.net/free-photo/portrait-waitress-standing-counter_1170-657.jpg" },
{ id: "2", name: "Marco V.", handle: "@marcov", testimonial: "Porzioni abbondanti e bistecca eccezionale. Il mio posto fisso!", imageSrc: "http://img.b2bpic.net/free-photo/brunette-man-eating-green-red-apples_114579-41998.jpg" },
{ id: "3", name: "Elena S.", handle: "@elenas", testimonial: "Pizza sottile, leggera e ricca di sapore. La diavola è da provare.", imageSrc: "http://img.b2bpic.net/free-photo/close-up-smiling-young-woman-amusement-park_23-2147910756.jpg" },
{ id: "4", name: "Luca B.", handle: "@lucab", testimonial: "Servizio rapido a pranzo e qualità eccellente. Consigliatissimo.", imageSrc: "http://img.b2bpic.net/free-photo/portrait-waitress-standing-counter_1170-657.jpg" },
{ id: "5", name: "Sara D.", handle: "@sarad", testimonial: "Dolci della casa superbi. Locale sempre pulito e accogliente.", imageSrc: "http://img.b2bpic.net/free-photo/brunette-man-eating-green-red-apples_114579-41998.jpg" },
]}
title="Cosa dicono di noi"
description="Da anni, sempre gli stessi sorrisi."
@@ -186,52 +107,23 @@ export default function LandingPage() {
<SocialProofOne
textboxLayout="default"
useInvertedBackground={false}
title="I nostri numeri"
description="Risultati che contano ogni giorno."
names={["Oltre 5000 clienti felici", "10 anni di esperienza", "Qualità certificata"]}
/>
</div>
<div id="legal" data-section="legal">
<LegalSection />
<LegalSection layout="default" title="Note Legali" sections={[{ title: "Privacy Policy", content: "..." }]} />
</div>
<div id="footer" data-section="footer">
<FooterBaseReveal
logoText="L'Acquolina In Bocca"
columns={[
{
title: "Info",
items: [
{
label: "Via Roma, 1, Milano",
href: "#",
},
{
label: "02 1234567",
href: "tel:+39021234567",
},
],
},
{
title: "Menù",
items: [
{
label: "Pranzo di lavoro",
href: "/menu",
},
{
label: "Specialità",
href: "/menu",
},
],
},
{
title: "Prenota",
items: [
{
label: "Contattaci",
href: "/contact",
},
],
},
{ title: "Info", items: [{ label: "Via Roma, 1, Milano", href: "#" }, { label: "02 1234567", href: "tel:+39021234567" }] },
{ title: "Menù", items: [{ label: "Pranzo di lavoro", href: "/menu" }, { label: "Specialità", href: "/menu" }] },
{ title: "Prenota", items: [{ label: "Contattaci", href: "/contact" }] },
]}
copyrightText="© 2024 L'Acquolina In Bocca. Tutti i diritti riservati."
/>