diff --git a/src/app/page.tsx b/src/app/page.tsx
index d61b7b7..c288c71 100644
--- a/src/app/page.tsx
+++ b/src/app/page.tsx
@@ -9,9 +9,87 @@ import PricingCardNine from '@/components/sections/pricing/PricingCardNine';
import MediaAbout from '@/components/sections/about/MediaAbout';
import ContactCenter from '@/components/sections/contact/ContactCenter';
import FooterSimple from '@/components/sections/footer/FooterSimple';
-import { ChefHat, Heart, PhoneCall, Utensils, Wine } from 'lucide-react';
+import { ChefHat, Heart, PhoneCall, Utensils, Wine, Globe } from 'lucide-react';
+import { useState } from 'react';
export default function LandingPage() {
+ const [language, setLanguage] = useState<'it' | 'en'>('it');
+
+ const t = {
+ it: {
+ home: 'Home',
+ team: 'La Brigata',
+ menu: 'Menu',
+ wines: 'Vini',
+ about: 'Chi Siamo',
+ contact: 'Contatti',
+ welcomeTitle: 'Benvenuti a Osteria Bell\'Italia',
+ welcomeDesc: 'Scopri l\'autenticità della cucina italiana tradizionale in un\'atmosfera calda e accogliente. Piatti genuini preparati con amore e ingredienti selezionati con cura.',
+ tagAuth: 'Authentic Italian Dining',
+ bookTable: 'Prenotazioni',
+ teamTitle: 'La Brigata - Il Cuore di Osteria Bell\'Italia',
+ teamTag: 'Our Team',
+ menuTitle: 'Il Nostro Menu',
+ menuDesc: 'Una selezione curata di piatti tradizionali italiani preparati con passione e ingredienti premium. Ogni piatto celebra i sapori autentici d\'Italia.',
+ menuTag: 'Ricette Tradizionali',
+ winesTitle: 'I Nostri Vini - Wine Selection',
+ winesDesc: 'Una raffinata selezione di vini italiani che accompagnano perfettamente ogni portata. Scopri i migliori vini della tradizione italiana.',
+ winesTag: 'Wine Collection',
+ aboutTitle: 'Osteria Bell\'Italia - La Nostra Storia',
+ aboutDesc: 'Situata nel cuore di Cisternino, Osteria Bell\'Italia è un luogo dove la tradizione culinaria pugliese incontra l\'ospitalità autentica. Fondati con la passione per la cucina italiana genuina, continuiamo a servire piatti preparati con amore, ingredienti freschi e ricette tramandate nel tempo. Ogni visita è un invito a scoprire il vero sapore dell\'Italia.',
+ aboutTag: 'La Nostra Storia',
+ aboutBtn: 'Prenota un Tavolo',
+ contactTitle: 'Prenota una Tavola',
+ contactDesc: 'Contattaci per prenotare il tuo tavolo o per ricevere informazioni su menu speciali, eventi privati e cene di gruppo. Saremo felici di accoglierti.',
+ contactTag: 'Prenota il Tuo Tavolo',
+ reserveBtn: 'Richiedi Prenotazione',
+ reserveTerms: 'Prenotando, accetti le nostre politiche di ristorazione. Non vediamo l\'ora di accoglierti!',
+ navigate: 'Naviga',
+ contactInfo: 'Contatti',
+ location: 'Ubicazione',
+ social: 'Social',
+ copyright: '© 2025 Osteria Bell\'Italia. All rights reserved.',
+ tagline: 'Authentic Italian Dining Since 2025'
+ },
+ en: {
+ home: 'Home',
+ team: 'La Brigata',
+ menu: 'Menu',
+ wines: 'Wines',
+ about: 'About',
+ contact: 'Contact',
+ welcomeTitle: 'Welcome to Osteria Bell\'Italia',
+ welcomeDesc: 'Discover the authenticity of traditional Italian cuisine in a warm and welcoming atmosphere. Genuine dishes prepared with love and carefully selected ingredients.',
+ tagAuth: 'Authentic Italian Dining',
+ bookTable: 'Book a Table',
+ teamTitle: 'La Brigata - The Heart of Osteria Bell\'Italia',
+ teamTag: 'Our Team',
+ menuTitle: 'Our Menu',
+ menuDesc: 'A curated selection of traditional Italian dishes prepared with passion and premium ingredients. Each plate celebrates the authentic flavors of Italy.',
+ menuTag: 'Traditional Recipes',
+ winesTitle: 'Our Wines - Wine Selection',
+ winesDesc: 'A refined selection of Italian wines that perfectly accompany each course. Discover the best wines of Italian tradition.',
+ winesTag: 'Wine Collection',
+ aboutTitle: 'Osteria Bell\'Italia - Our Story',
+ aboutDesc: 'Located in the heart of Cisternino, Osteria Bell\'Italia is a place where Puglian culinary tradition meets authentic hospitality. Founded with a passion for genuine Italian cuisine, we continue to serve dishes prepared with love, fresh ingredients and time-honored recipes. Every visit is an invitation to discover the true taste of Italy.',
+ aboutTag: 'Our Heritage',
+ aboutBtn: 'Book Your Table',
+ contactTitle: 'Make a Reservation',
+ contactDesc: 'Contact us to book your table or for information about special menus, private events and group dinners. We\'ll be happy to welcome you.',
+ contactTag: 'Reserve Your Table',
+ reserveBtn: 'Request Reservation',
+ reserveTerms: 'By reserving, you agree to our dining policies. We look forward to welcoming you!',
+ navigate: 'Navigate',
+ contactInfo: 'Contact',
+ location: 'Location',
+ social: 'Social',
+ copyright: '© 2025 Osteria Bell\'Italia. All rights reserved.',
+ tagline: 'Authentic Italian Dining Since 2025'
+ }
+ };
+
+ const texts = t[language];
+
return (