1 Commits

Author SHA1 Message Date
0ea0935650 Switch to version 3: modified src/app/page.tsx 2026-05-25 23:28:18 +00:00

View File

@@ -32,17 +32,17 @@ export default function LandingPage() {
<NavbarLayoutFloatingInline <NavbarLayoutFloatingInline
navItems={[ navItems={[
{ {
name: "Home", id: "hero"}, name: "Home", id: "#hero"},
{ {
name: "Chi Siamo", id: "about"}, name: "Chi Siamo", id: "#about"},
{ {
name: "Menù", id: "menu"}, name: "Menù", id: "#menu"},
{ {
name: "Servizi", id: "features"}, name: "Servizi", id: "#features"},
{ {
name: "Dicono di Noi", id: "testimonials"}, name: "Dicono di Noi", id: "#testimonials"},
{ {
name: "Contatti", id: "contact"}, name: "Contatti", id: "#contact"},
]} ]}
logoSrc="http://img.b2bpic.net/free-vector/coffee-shop-profile-picture-template_742173-9181.jpg" logoSrc="http://img.b2bpic.net/free-vector/coffee-shop-profile-picture-template_742173-9181.jpg"
logoAlt="Caffetteria del Centro Logo" logoAlt="Caffetteria del Centro Logo"
@@ -61,7 +61,7 @@ export default function LandingPage() {
description="Il cuore pulsante del gusto e della tradizione nel centro della città, dove ogni tazza racconta una storia." description="Il cuore pulsante del gusto e della tradizione nel centro della città, dove ogni tazza racconta una storia."
buttons={[ buttons={[
{ {
text: "Scopri il Menù", href: "menu"}, text: "Scopri il Menù", href: "#menu"},
{ {
text: "Vieni a Trovarci", onClick: () => { text: "Vieni a Trovarci", onClick: () => {
document.getElementById('contact')?.scrollIntoView({ behavior: 'smooth' }); document.getElementById('contact')?.scrollIntoView({ behavior: 'smooth' });
@@ -238,21 +238,21 @@ export default function LandingPage() {
{ {
title: "Esplora", items: [ title: "Esplora", items: [
{ {
label: "Home", href: "hero"}, label: "Home", href: "#hero"},
{ {
label: "Menù", href: "menu"}, label: "Menù", href: "#menu"},
{ {
label: "Servizi", href: "features"}, label: "Servizi", href: "#features"},
], ],
}, },
{ {
title: "Azienda", items: [ title: "Azienda", items: [
{ {
label: "Chi Siamo", href: "about"}, label: "Chi Siamo", href: "#about"},
{ {
label: "Dicono di Noi", href: "testimonials"}, label: "Dicono di Noi", href: "#testimonials"},
{ {
label: "Contatti", href: "contact"}, label: "Contatti", href: "#contact"},
], ],
}, },
{ {