6 Commits

Author SHA1 Message Date
0d7a952330 Merge version_4 into main
Merge version_4 into main
2026-05-25 23:18:58 +00:00
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
6af867d670 Update src/app/page.tsx 2026-05-25 23:17:16 +00:00
45a03208b2 Merge version_2 into main
Merge version_2 into main
2026-05-25 23:12:51 +00:00
9d5f23033b Merge version_2 into main
Merge version_2 into main
2026-05-25 23:12:10 +00:00

View File

@@ -32,23 +32,26 @@ 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"
brandName="Caffetteria del Centro"
button={{
text: "Ordina Ora", href: "#contact"}}
text: "Ordina Ora", onClick: () => {
document.getElementById('contact')?.scrollIntoView({ behavior: 'smooth' });
}
}}
/>
</div>
@@ -58,9 +61,12 @@ 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", href: "#contact"},
text: "Vieni a Trovarci", onClick: () => {
document.getElementById('contact')?.scrollIntoView({ behavior: 'smooth' });
}
},
]}
slides={[
{
@@ -232,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"},
],
},
{
@@ -264,4 +270,4 @@ export default function LandingPage() {
</ReactLenis>
</ThemeProvider>
);
}
}