diff --git a/src/app/prenotazioni/page.tsx b/src/app/prenotazioni/page.tsx new file mode 100644 index 0000000..1488592 --- /dev/null +++ b/src/app/prenotazioni/page.tsx @@ -0,0 +1,98 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import ReactLenis from "lenis/react"; +import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple'; +import ContactForm from '@/components/form/ContactForm'; +import FooterMedia from '@/components/sections/footer/FooterMedia'; + +export const generateMetadata = () => { + return { + title: "Prenota il tuo tavolo - Il Paisiello", description: "Richiedi una prenotazione al ristorante Il Paisiello a Veglie (LE). Compila il modulo e ti contatteremo per confermare il tuo tavolo." + }; +}; + +export default function PrenotazioniPage() { + 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