2 Commits

Author SHA1 Message Date
73e532c332 Update src/app/page.tsx 2026-05-25 23:18:55 +00:00
cc01187e8d Merge version_3 into main
Merge version_3 into main
2026-05-25 23:17:19 +00:00

View File

@@ -32,17 +32,17 @@ export default function LandingPage() {
<NavbarLayoutFloatingInline
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"
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."
buttons={[
{
text: "Scopri il Menù", href: "#menu"},
text: "Scopri il Menù", href: "menu"},
{
text: "Vieni a Trovarci", onClick: () => {
document.getElementById('contact')?.scrollIntoView({ behavior: 'smooth' });
@@ -238,21 +238,21 @@ export default function LandingPage() {
{
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: [
{
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"},
],
},
{
@@ -270,4 +270,4 @@ export default function LandingPage() {
</ReactLenis>
</ThemeProvider>
);
}
}