From bd272cb7d8dbd379f4a5d532c278d6895e251a99 Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 9 Mar 2026 22:08:49 +0000 Subject: [PATCH] Update src/app/page.tsx --- src/app/page.tsx | 62 +++++++++++++++++++++++++++++++++--------------- 1 file changed, 43 insertions(+), 19 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 020de14..883f8ae 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -8,7 +8,7 @@ import FeatureCardTwentyFive from "@/components/sections/feature/FeatureCardTwen import TestimonialCardTen from "@/components/sections/testimonial/TestimonialCardTen"; import ContactCenter from "@/components/sections/contact/ContactCenter"; import FooterBaseCard from "@/components/sections/footer/FooterBaseCard"; -import { Flame, UtensilsCrossed, Utensils, UtensilsCrossed as Chef, Phone } from "lucide-react"; +import { Flame, UtensilsCrossed, Utensils, UtensilsCrossed as Chef, Phone, MapPin, Clock, ShoppingBag, Users } from "lucide-react"; export default function LandingPage() { return ( @@ -174,35 +174,59 @@ export default function LandingPage() { logoText="Ristorante Pizzeria '85" columns={[ { - title: "Menu", items: [ - { label: "Home", href: "#home" }, - { label: "Chi Siamo", href: "#about" }, - { label: "Piatti Speciali", href: "#features" }, - { label: "Recensioni", href: "#testimonials" }, + title: "Informazioni Ristorante", items: [ + { + label: "⭐ Valutazione: 4.5 stelle", href: "#" + }, + { + label: "💰 Prezzo: €10-20 a persona", href: "#" + }, + { + label: "📍 Via Carrara 26, Sasso di Castalda", href: "#" + }, + { + label: "📞 0975 385106", href: "#" + }, ], }, { - title: "Contatti", items: [ - { label: "📍 Sasso di Castalda", href: "#" }, - { label: "📞 Chiama per prenotare", href: "#" }, - { label: "✉️ Email", href: "#" }, - { label: "🕐 Orari", href: "#" }, + title: "Orari di Apertura", items: [ + { + label: "Lunedì - Venerdì: 12:00 - 23:00", href: "#" + }, + { + label: "Sabato: 12:00 - 00:00", href: "#" + }, + { + label: "Domenica: 12:00 - 23:00", href: "#" + }, + { + label: "Chiuso: Lunedì sera", href: "#" + }, + ], + }, + { + title: "Servizi", items: [ + { + label: "🍽️ Dine-in disponibile", href: "#" + }, + { + label: "📦 Takeaway disponibile", href: "#" + }, + { + label: "🚗 Parcheggio disponibile", href: "#" + }, + { + label: "👥 Prenotazioni consigliate", href: "#" + }, ], }, { title: "Compagnia", items: [ { label: "Chi Siamo", href: "#about" }, { label: "La Nostra Storia", href: "#about" }, - { label: "Team", href: "#" }, - { label: "Carriere", href: "#" }, - ], - }, - { - title: "Legale", items: [ { label: "Privacy Policy", href: "#" }, { label: "Termini di Servizio", href: "#" }, - { label: "Cookie Policy", href: "#" }, - { label: "Disclaimer", href: "#" }, ], }, ]} -- 2.49.1