From aba03174bf527488f81709c090f7111b48db1f18 Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 9 Jun 2026 08:12:43 +0000 Subject: [PATCH 1/3] Add src/app/contatti/page.tsx --- src/app/contatti/page.tsx | 104 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 104 insertions(+) create mode 100644 src/app/contatti/page.tsx diff --git a/src/app/contatti/page.tsx b/src/app/contatti/page.tsx new file mode 100644 index 0000000..c8d258c --- /dev/null +++ b/src/app/contatti/page.tsx @@ -0,0 +1,104 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import ReactLenis from "lenis/react"; +import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple'; +import ContactCTA from '@/components/sections/contact/ContactCTA'; +import FooterMedia from '@/components/sections/footer/FooterMedia'; + +export const generateMetadata = () => { + return { + title: "Contattaci - Il Paisiello", description: "Per qualsiasi domanda, informazione o richiesta speciale, non esitare a contattare Il Paisiello, ristorante di pesce a Veglie (LE)." + }; +}; + +export default function ContattiPage() { + const navItems = [ + { name: "Home", id: "/" }, + { name: "Chi siamo", id: "/#about" }, + { name: "Menu", id: "/#menu" }, + { name: "Recensioni", id: "/#reviews" }, + { name: "Esperienza", id: "/#experience" }, + { name: "Prenotazioni", id: "/prenotazioni" }, + { name: "Contatti", id: "/contatti" } + ]; + + return ( + + + + +
+ +
+ + +
+
+ ); +} \ No newline at end of file From e6433919b93046e611e3242c138930c28dcad6a8 Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 9 Jun 2026 08:12:44 +0000 Subject: [PATCH 2/3] Update src/app/page.tsx --- src/app/page.tsx | 49 ++++++++++++++++++------------------------------ 1 file changed, 18 insertions(+), 31 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 73c8d08..a456210 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -2,7 +2,6 @@ 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'; @@ -32,17 +31,19 @@ export default function LandingPage() { @@ -75,9 +76,9 @@ export default function LandingPage() { testimonialRotationInterval={5000} buttons={[ { - text: "Prenota ora", href: "tel:3201992518"}, + text: "Prenota ora", href: "/prenotazioni"}, { - 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" @@ -131,7 +132,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: "#"}, + text: "Vedi menu completo", href: "/#menu"}, ]} /> @@ -219,20 +220,6 @@ export default function LandingPage() { /> -
- -