From aba03174bf527488f81709c090f7111b48db1f18 Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 9 Jun 2026 08:12:43 +0000 Subject: [PATCH] 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