diff --git a/src/app/prenotazioni/page.tsx b/src/app/prenotazioni/page.tsx deleted file mode 100644 index 8cf9df6..0000000 --- a/src/app/prenotazioni/page.tsx +++ /dev/null @@ -1,99 +0,0 @@ -"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