Compare commits
3 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 0d7a952330 | |||
| 73e532c332 | |||
| cc01187e8d |
@@ -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>
|
||||
);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user