From d67e0a08bda409222887c8f224ee4ad91ef6dc17 Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 9 Jun 2026 08:14:40 +0000 Subject: [PATCH] Switch to version 1: remove src/app/contatti/page.tsx --- src/app/contatti/page.tsx | 104 -------------------------------------- 1 file changed, 104 deletions(-) delete mode 100644 src/app/contatti/page.tsx diff --git a/src/app/contatti/page.tsx b/src/app/contatti/page.tsx deleted file mode 100644 index c8d258c..0000000 --- a/src/app/contatti/page.tsx +++ /dev/null @@ -1,104 +0,0 @@ -"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