Switch to version 1: modified src/app/page.tsx

This commit is contained in:
2026-06-09 08:14:39 +00:00
parent 6b87282a7d
commit 6b3a7b71f8

View File

@@ -2,6 +2,7 @@
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react";
import ContactText from '@/components/sections/contact/ContactText';
import FeatureCardTwentyFour from '@/components/sections/feature/FeatureCardTwentyFour';
import FooterMedia from '@/components/sections/footer/FooterMedia';
import HeroSplitTestimonial from '@/components/sections/hero/HeroSplitTestimonial';
@@ -31,19 +32,17 @@ export default function LandingPage() {
<NavbarStyleApple
navItems={[
{
name: "Home", id: "/"},
name: "Home", id: "#hero"},
{
name: "Chi siamo", id: "/#about"},
name: "Chi siamo", id: "#about"},
{
name: "Menu", id: "/#menu"},
name: "Menu", id: "#menu"},
{
name: "Recensioni", id: "/#reviews"},
name: "Recensioni", id: "#reviews"},
{
name: "Esperienza", id: "/#experience"},
name: "Esperienza", id: "#experience"},
{
name: "Prenotazioni", id: "/prenotazioni"},
{
name: "Contatti", id: "/contatti"},
name: "Contatti", id: "#contact"},
]}
brandName="Il Paisiello"
/>
@@ -76,9 +75,9 @@ export default function LandingPage() {
testimonialRotationInterval={5000}
buttons={[
{
text: "Prenota ora", href: "/prenotazioni"},
text: "Prenota ora", href: "tel:3201992518"},
{
text: "Guarda il menu", href: "/#menu"},
text: "Guarda il menu", href: "#menu"},
]}
imageSrc="http://img.b2bpic.net/free-photo/spaghetti-with-mussels_1150-18483.jpg"
imageAlt="Piatti di pesce eleganti al Paisiello"
@@ -132,7 +131,7 @@ export default function LandingPage() {
description="Scopri una selezione delle nostre creazioni più amate e le specialità dello chef, preparate con pesce freschissimo e passione. Un assaggio del nostro menu completo."
buttons={[
{
text: "Vedi menu completo", href: "/#menu"},
text: "Vedi menu completo", href: "#"},
]}
/>
</div>
@@ -220,6 +219,20 @@ export default function LandingPage() {
/>
</div>
<div id="contact" data-section="contact">
<ContactText
useInvertedBackground={false}
background={{
variant: "plain"}}
text="Ci troviamo a Veglie, nel cuore del Salento. Ti aspettiamo per un'esperienza culinaria indimenticabile. Prenota il tuo tavolo oggi!"
buttons={[
{
text: "Prenota ora", href: "tel:3201992518"},
{
text: "Portami qui", href: "https://www.google.com/maps/dir/?api=1&destination=Via+Monte+Grappa,+68,+73010+Veglie+LE"},
]}
/>
</div>
<div id="footer" data-section="footer">
<FooterMedia
@@ -230,21 +243,21 @@ export default function LandingPage() {
{
title: "Menu", items: [
{
label: "Piatti Iconici", href: "/#menu"},
label: "Piatti Iconici", href: "#menu"},
{
label: "Crudi e Carpacci", href: "/#menu"},
label: "Crudi e Carpacci", href: "#menu"},
{
label: "Specialità dello Chef", href: "/#menu"},
label: "Specialità dello Chef", href: "#menu"},
],
},
{
title: "Informazioni", items: [
{
label: "Chi Siamo", href: "/#about"},
label: "Chi Siamo", href: "#about"},
{
label: "Prenotazioni", href: "/prenotazioni"},
label: "Orari", href: "#contact"},
{
label: "Contatti", href: "/contatti"},
label: "Contatti", href: "#contact"},
],
},
{
@@ -262,4 +275,4 @@ export default function LandingPage() {
</ReactLenis>
</ThemeProvider>
);
}
}