diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 43de580..6ad099e 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,57 +1,20 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; -import { Nunito } from "next/font/google"; import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; -const halant = Halant({ - variable: "--font-halant", subsets: ["latin"], - weight: ["300", "400", "500", "600", "700"], -}); - -const inter = Inter({ - variable: "--font-inter", subsets: ["latin"], -}); - -const nunito = Nunito({ - variable: "--font-nunito", subsets: ["latin"], -}); +const inter = Inter({ variable: "--font-inter", subsets: ["latin"] }); export const metadata: Metadata = { - title: "GiustoCosì | Fine Dining in Treviglio", description: "Experience innovative Italian cuisine at GiustoCosì. Located in Treviglio's historic center, we offer signature dishes and exceptional hospitality led by Chef Niccolò.", keywords: "fine dining Treviglio, Italian restaurant, innovative cuisine, Gyrozoncelli, reservations", metadataBase: new URL("https://giustocosi.it"), - alternates: { - canonical: "https://giustocosi.it"}, - openGraph: { - title: "GiustoCosì | Elegant Dining Experience", description: "Discover signature dishes and warm hospitality in historic Treviglio", url: "https://giustocosi.it", siteName: "GiustoCosì", type: "website", images: [ - { - url: "http://img.b2bpic.net/free-photo/side-view-couple-having-lunch_23-2150598339.jpg", alt: "GiustoCosì elegant dining room"}, - ], - }, - twitter: { - card: "summary_large_image", title: "GiustoCosì | Fine Dining", description: "Experience innovative Italian cuisine in Treviglio", images: ["http://img.b2bpic.net/free-photo/side-view-couple-having-lunch_23-2150598339.jpg"], - }, - robots: { - index: true, - follow: true, - }, -}; + title: "GiustoCosì - Fine Dining in Treviglio", description: "Discover innovative cuisine and exceptional hospitality at GiustoCosì, a fine dining restaurant in Treviglio's historic center."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children} - ); } diff --git a/src/app/page.tsx b/src/app/page.tsx index 8091fc8..16ad15a 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -11,7 +11,7 @@ import FooterBaseReveal from '@/components/sections/footer/FooterBaseReveal'; import { Sparkles, Heart, ChefHat, Utensils, Flame, Zap, Leaf, Wine, Star, Quote } from 'lucide-react'; const handleReservationSubmit = (data: Record) => { - console.log('Reservation submitted:', data); + console.log('Prenotazione inviata:', data); }; export default function LandingPage() { @@ -32,29 +32,29 @@ export default function LandingPage() { window.open('tel:+39XXXXXXXXXX') } + { text: "Prenota il Tuo Tavolo", href: "contact" }, + { text: "Chiama Ora", onClick: () => window.open('tel:+39XXXXXXXXXX') } ]} buttonAnimation="slide-up" /> @@ -62,14 +62,14 @@ export default function LandingPage() { @@ -77,38 +77,38 @@ export default function LandingPage() { @@ -178,31 +178,31 @@ export default function LandingPage() {