Merge version_2_1781567015719 into main

Merge version_2_1781567015719 into main
This commit was merged in pull request #1.
This commit is contained in:
2026-06-15 23:45:05 +00:00
10 changed files with 372 additions and 271 deletions

View File

@@ -5,15 +5,15 @@
:root {
/* @colorThemes/lightTheme/grayNavyBlue */
--background: #f6f0e9;
--card: #efe7dd;
--foreground: #2b180a;
--primary-cta: #2b180a;
--primary-cta-text: #f6f0e9;
--secondary-cta: #efe7dd;
--secondary-cta-text: #2b180a;
--accent: #94877c;
--background-accent: #afa094;
--background: #1a120b;
--card: #241910;
--foreground: #e6dfd5;
--primary-cta: #e6dfd5;
--primary-cta-text: #1a120b;
--secondary-cta: #241910;
--secondary-cta-text: #e6dfd5;
--accent: #8c7355;
--background-accent: #2d2015;
/* @layout/border-radius/rounded */
--radius: 0.5rem;

View File

@@ -1,274 +1,36 @@
import AboutMediaOverlay from '@/components/sections/about/AboutMediaOverlay';
import ContactCta from '@/components/sections/contact/ContactCta';
import FeaturesMediaCarousel from '@/components/sections/features/FeaturesMediaCarousel';
import HeroBillboard from '@/components/sections/hero/HeroBillboard';
import MetricsSimpleCards from '@/components/sections/metrics/MetricsSimpleCards';
import PricingSimpleCards from '@/components/sections/pricing/PricingSimpleCards';
import TeamDetailedCards from '@/components/sections/team/TeamDetailedCards';
import TestimonialRatingCards from '@/components/sections/testimonial/TestimonialRatingCards';
import { Instagram } from "lucide-react";
import SectionErrorBoundary from "@/components/ui/SectionErrorBoundary";
// AUTO-GENERATED shell by per-section-migrate.
// Section bodies live in ./<PageBase>/sections/<X>.tsx. Edit the section
// files directly. Non-block content (wrappers, non-inlinable sections) is
// preserved inline; extracted section blocks become <XSection/> refs.
export default function HomePage() {
import React from 'react';
import HeroSection from './HomePage/sections/Hero';
import AboutSection from './HomePage/sections/About';
import FeaturesSection from './HomePage/sections/Features';
import PricingSection from './HomePage/sections/Pricing';
import MetricsSection from './HomePage/sections/Metrics';
import TeamSection from './HomePage/sections/Team';
import TestimonialsSection from './HomePage/sections/Testimonials';
import ContactSection from './HomePage/sections/Contact';
export default function HomePage(): React.JSX.Element {
return (
<>
<div id="hero" data-section="hero">
<SectionErrorBoundary name="hero">
<HeroBillboard
tag="Benvenuti al Il Mulino"
title="Dove il vino incontra la cucina dautore"
description="Un'esperienza gastronomica unica nel cuore della Liguria, tra sapori della terra e percorsi enologici ricercati."
primaryButton={{
text: "Scopri il Menu",
href: "#menu",
}}
secondaryButton={{
text: "Prenota un Tavolo",
href: "#booking",
}}
imageSrc="http://img.b2bpic.net/free-photo/caesar-salad-with-leaf-parmesan-thin-galetta_114579-2178.jpg"
/>
</SectionErrorBoundary>
</div>
<>
<HeroSection />
<div id="about" data-section="about">
<SectionErrorBoundary name="about">
<AboutMediaOverlay
tag="La Nostra Filosofia"
title="Tradizione e Innovazione"
description="Ogni piatto è un racconto del territorio ligure, interpretato con creatività e passione. Selezioniamo ingredienti d'eccellenza per una convivialità raffinata."
imageSrc="http://img.b2bpic.net/free-photo/medium-shot-professional-chefs-working-together_23-2151232214.jpg"
/>
</SectionErrorBoundary>
</div>
<AboutSection />
<div id="features" data-section="features">
<SectionErrorBoundary name="features">
<FeaturesMediaCarousel
tag="Le Nostre Esperienze"
title="Percorsi Enogastronomici"
description="Scopri i nostri percorsi unici, ideati per stupire il palato e celebrare la cultura del vino."
items={[
{
title: "Degustazioni Vini",
description: "Cantina storica con etichette selezionate.",
buttonIcon: "Wine",
imageSrc: "http://img.b2bpic.net/free-photo/mid-section-bar-tender-opening-bottle-wine_107420-65416.jpg",
},
{
title: "Cene Romantiche",
description: "Un'atmosfera intima per serate indimenticabili.",
buttonIcon: "Heart",
imageSrc: "http://img.b2bpic.net/free-photo/top-view-people-holding-drinks_23-2150124821.jpg",
},
{
title: "Esperienze Gourmet",
description: "Menu degustazione creativi dello Chef.",
buttonIcon: "Utensils",
imageSrc: "http://img.b2bpic.net/free-photo/close-up-man-cooking_23-2150980286.jpg",
},
{
title: "Serate a Tema",
description: "Eventi speciali dedicati ai sapori regionali.",
buttonIcon: "Sparkles",
imageSrc: "http://img.b2bpic.net/free-photo/group-young-women-having-dinner-wine-together_23-2148454135.jpg",
},
{
title: "Corsi Cucina",
description: "Impara i segreti dei nostri maestri.",
buttonIcon: "ChefHat",
imageSrc: "http://img.b2bpic.net/free-photo/baker-cutting-raw-dough-into-tagliatelle-pasta-machine-wooden-board_23-2147926008.jpg",
},
{
title: "Eventi Privati",
description: "Personalizza la tua serata esclusiva.",
buttonIcon: "GlassWater",
imageSrc: "http://img.b2bpic.net/free-photo/meat-salad-with-lettuce-tomato-cucumber-pepper-sauce_141793-17537.jpg",
},
]}
/>
</SectionErrorBoundary>
</div>
<FeaturesSection />
<div id="pricing" data-section="pricing">
<SectionErrorBoundary name="pricing">
<PricingSimpleCards
tag="Menu"
title="Le Nostre Proposte"
description="Menu degustazione curati per esaltare le eccellenze del territorio."
plans={[
{
tag: "Degustazione",
price: "€65",
description: "Percorso degustazione base con pairing.",
features: [
"Antipasto",
"Primo",
"Secondo",
"Dolce",
],
},
{
tag: "Chef Selection",
price: "€95",
description: "Menu degustazione creativo completo.",
features: [
"Percorso completo",
"Vini inclusi",
"Amuse-bouche",
"Petit four",
],
},
{
tag: "Vini Premium",
price: "€45",
description: "Carta dei vini regionale d'eccellenza.",
features: [
"Selezione vini",
"Sommelier dedicato",
"Storia della cantina",
],
},
]}
/>
</SectionErrorBoundary>
</div>
<PricingSection />
<div id="metrics" data-section="metrics">
<SectionErrorBoundary name="metrics">
<MetricsSimpleCards
tag="I Nostri Numeri"
title="Qualità Certificata"
description="Una passione condivisa ogni giorno con i nostri ospiti."
metrics={[
{
value: "4.8/5",
description: "Valutazione media",
},
{
value: "150+",
description: "Etichette vini",
},
{
value: "12+",
description: "Anni di passione",
},
]}
/>
</SectionErrorBoundary>
</div>
<MetricsSection />
<div id="team" data-section="team">
<SectionErrorBoundary name="team">
<TeamDetailedCards
tag="Il Nostro Staff"
title="Professionisti a tuo servizio"
description="Accoglienza e professionalità per farti sentire a casa."
members={[
{
name: "Chef Marco",
role: "Executive Chef",
description: "Ricerca continua di sapori autentici.",
socialLinks: [
{
icon: Instagram,
url: "#",
},
],
imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-man-posing-indoors_23-2151038683.jpg",
},
{
name: "Giulia",
role: "Sommelier",
description: "Passione per le terre e le vigne.",
socialLinks: [
{
icon: Instagram,
url: "#",
},
],
imageSrc: "http://img.b2bpic.net/free-photo/front-view-man-holding-glass-wine_23-2148060598.jpg",
},
{
name: "Luca",
role: "Maître",
description: "Attenzione ad ogni dettaglio di sala.",
socialLinks: [
{
icon: Instagram,
url: "#",
},
],
imageSrc: "http://img.b2bpic.net/free-photo/businessman-dress-code-holding-black-jacket-his-arm_114579-15947.jpg",
},
]}
/>
</SectionErrorBoundary>
</div>
<TeamSection />
<div id="testimonials" data-section="testimonials">
<SectionErrorBoundary name="testimonials">
<TestimonialRatingCards
tag="Dicono di noi"
title="Recensioni Gastronomiche"
description="Le parole dei nostri ospiti sono la nostra soddisfazione più grande."
testimonials={[
{
name: "Elena V.",
role: "Food Blogger",
quote: "Esperienza sublime, vini ricercati e un'atmosfera incredibile.",
rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/portrait-happy-dark-skinned-young-female-with-frizzy-hair-eats-something-drinks-smoothie-spends-free-time-with-boyfriend-friend-enjoys-summer-vacations-tropical-country-island_273609-2195.jpg",
},
{
name: "Roberto M.",
role: "Business Man",
quote: "Servizio impeccabile e cucina di livello stellato.",
rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/people-having-dinner-luxurious-restaurants_23-2151081914.jpg",
},
{
name: "Chiara B.",
role: "Locale",
quote: "Il miglior posto dove sentirsi coccolati.",
rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/portrait-smiling-brunette-woman-drinks-morning-coffee-cafe_613910-12134.jpg",
},
{
name: "Alessandro S.",
role: "Wine Lover",
quote: "Una cantina che sorprende ad ogni sorso.",
rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/side-view-friends-dinner-party_23-2151043670.jpg",
},
{
name: "Francesca T.",
role: "Turista",
quote: "Un angolo di paradiso ligure da provare.",
rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/portrait-handsome-asian-man-friends-reunion_23-2149244687.jpg",
},
]}
/>
</SectionErrorBoundary>
</div>
<TestimonialsSection />
<div id="contact" data-section="contact">
<SectionErrorBoundary name="contact">
<ContactCta
tag="Prenotazioni"
text="Prenota ora per assicurarti il miglior tavolo e vivere un'esperienza gastronomica unica."
primaryButton={{
text: "Conferma Prenotazione",
href: "#booking",
}}
secondaryButton={{
text: "Google Maps",
href: "https://maps.google.com",
}}
/>
</SectionErrorBoundary>
</div>
<ContactSection />
</>
);
}

View File

@@ -0,0 +1,21 @@
// AUTO-GENERATED by per-section-migrate. Edit freely — Bob will treat this
// file as the canonical source for the "about" section.
import React from 'react';
import AboutMediaOverlay from '@/components/sections/about/AboutMediaOverlay';
import SectionErrorBoundary from "@/components/ui/SectionErrorBoundary";
export default function AboutSection(): React.JSX.Element {
return (
<div id="about" data-section="about">
<SectionErrorBoundary name="about">
<AboutMediaOverlay
tag="La Nostra Filosofia"
title="Tradizione e Innovazione"
description="Ogni piatto è un racconto del territorio ligure, interpretato con creatività e passione. Selezioniamo ingredienti d'eccellenza per una convivialità raffinata."
imageSrc="http://img.b2bpic.net/free-photo/medium-shot-professional-chefs-working-together_23-2151232214.jpg"
/>
</SectionErrorBoundary>
</div>
);
}

View File

@@ -0,0 +1,27 @@
// AUTO-GENERATED by per-section-migrate. Edit freely — Bob will treat this
// file as the canonical source for the "contact" section.
import React from 'react';
import ContactCta from '@/components/sections/contact/ContactCta';
import SectionErrorBoundary from "@/components/ui/SectionErrorBoundary";
export default function ContactSection(): React.JSX.Element {
return (
<div id="contact" data-section="contact">
<SectionErrorBoundary name="contact">
<ContactCta
tag="Prenotazioni"
text="Prenota ora per assicurarti il miglior tavolo e vivere un'esperienza gastronomica unica."
primaryButton={{
text: "Conferma Prenotazione",
href: "#booking",
}}
secondaryButton={{
text: "Google Maps",
href: "https://maps.google.com",
}}
/>
</SectionErrorBoundary>
</div>
);
}

View File

@@ -0,0 +1,58 @@
// AUTO-GENERATED by per-section-migrate. Edit freely — Bob will treat this
// file as the canonical source for the "features" section.
import React from 'react';
import FeaturesMediaCarousel from '@/components/sections/features/FeaturesMediaCarousel';
import SectionErrorBoundary from "@/components/ui/SectionErrorBoundary";
export default function FeaturesSection(): React.JSX.Element {
return (
<div id="features" data-section="features">
<SectionErrorBoundary name="features">
<FeaturesMediaCarousel
tag="Le Nostre Esperienze"
title="Percorsi Enogastronomici"
description="Scopri i nostri percorsi unici, ideati per stupire il palato e celebrare la cultura del vino."
items={[
{
title: "Degustazioni Vini",
description: "Cantina storica con etichette selezionate.",
buttonIcon: "Wine",
imageSrc: "http://img.b2bpic.net/free-photo/mid-section-bar-tender-opening-bottle-wine_107420-65416.jpg",
},
{
title: "Cene Romantiche",
description: "Un'atmosfera intima per serate indimenticabili.",
buttonIcon: "Heart",
imageSrc: "http://img.b2bpic.net/free-photo/top-view-people-holding-drinks_23-2150124821.jpg",
},
{
title: "Esperienze Gourmet",
description: "Menu degustazione creativi dello Chef.",
buttonIcon: "Utensils",
imageSrc: "http://img.b2bpic.net/free-photo/close-up-man-cooking_23-2150980286.jpg",
},
{
title: "Serate a Tema",
description: "Eventi speciali dedicati ai sapori regionali.",
buttonIcon: "Sparkles",
imageSrc: "http://img.b2bpic.net/free-photo/group-young-women-having-dinner-wine-together_23-2148454135.jpg",
},
{
title: "Corsi Cucina",
description: "Impara i segreti dei nostri maestri.",
buttonIcon: "ChefHat",
imageSrc: "http://img.b2bpic.net/free-photo/baker-cutting-raw-dough-into-tagliatelle-pasta-machine-wooden-board_23-2147926008.jpg",
},
{
title: "Eventi Privati",
description: "Personalizza la tua serata esclusiva.",
buttonIcon: "GlassWater",
imageSrc: "http://img.b2bpic.net/free-photo/meat-salad-with-lettuce-tomato-cucumber-pepper-sauce_141793-17537.jpg",
},
]}
/>
</SectionErrorBoundary>
</div>
);
}

View File

@@ -0,0 +1,29 @@
// AUTO-GENERATED by per-section-migrate. Edit freely — Bob will treat this
// file as the canonical source for the "hero" section.
import React from 'react';
import HeroBillboard from '@/components/sections/hero/HeroBillboard';
import SectionErrorBoundary from "@/components/ui/SectionErrorBoundary";
export default function HeroSection(): React.JSX.Element {
return (
<div id="hero" data-section="hero">
<SectionErrorBoundary name="hero">
<HeroBillboard
tag="Benvenuti al Il Mulino"
title="Dove il vino incontra la cucina dautore"
description="Un'esperienza gastronomica unica nel cuore della Liguria, tra sapori della terra e percorsi enologici ricercati."
primaryButton={{
text: "Scopri il Menu",
href: "#menu",
}}
secondaryButton={{
text: "Prenota un Tavolo",
href: "#booking",
}}
imageSrc="http://img.b2bpic.net/free-photo/caesar-salad-with-leaf-parmesan-thin-galetta_114579-2178.jpg"
/>
</SectionErrorBoundary>
</div>
);
}

View File

@@ -0,0 +1,34 @@
// AUTO-GENERATED by per-section-migrate. Edit freely — Bob will treat this
// file as the canonical source for the "metrics" section.
import React from 'react';
import MetricsSimpleCards from '@/components/sections/metrics/MetricsSimpleCards';
import SectionErrorBoundary from "@/components/ui/SectionErrorBoundary";
export default function MetricsSection(): React.JSX.Element {
return (
<div id="metrics" data-section="metrics">
<SectionErrorBoundary name="metrics">
<MetricsSimpleCards
tag="I Nostri Numeri"
title="Qualità Certificata"
description="Una passione condivisa ogni giorno con i nostri ospiti."
metrics={[
{
value: "4.8/5",
description: "Valutazione media",
},
{
value: "150+",
description: "Etichette vini",
},
{
value: "12+",
description: "Anni di passione",
},
]}
/>
</SectionErrorBoundary>
</div>
);
}

View File

@@ -0,0 +1,54 @@
// AUTO-GENERATED by per-section-migrate. Edit freely — Bob will treat this
// file as the canonical source for the "pricing" section.
import React from 'react';
import PricingSimpleCards from '@/components/sections/pricing/PricingSimpleCards';
import SectionErrorBoundary from "@/components/ui/SectionErrorBoundary";
export default function PricingSection(): React.JSX.Element {
return (
<div id="pricing" data-section="pricing">
<SectionErrorBoundary name="pricing">
<PricingSimpleCards
tag="Menu"
title="Le Nostre Proposte"
description="Menu degustazione curati per esaltare le eccellenze del territorio."
plans={[
{
tag: "Degustazione",
price: "€65",
description: "Percorso degustazione base con pairing.",
features: [
"Antipasto",
"Primo",
"Secondo",
"Dolce",
],
},
{
tag: "Chef Selection",
price: "€95",
description: "Menu degustazione creativo completo.",
features: [
"Percorso completo",
"Vini inclusi",
"Amuse-bouche",
"Petit four",
],
},
{
tag: "Vini Premium",
price: "€45",
description: "Carta dei vini regionale d'eccellenza.",
features: [
"Selezione vini",
"Sommelier dedicato",
"Storia della cantina",
],
},
]}
/>
</SectionErrorBoundary>
</div>
);
}

View File

@@ -0,0 +1,59 @@
// AUTO-GENERATED by per-section-migrate. Edit freely — Bob will treat this
// file as the canonical source for the "team" section.
import React from 'react';
import TeamDetailedCards from '@/components/sections/team/TeamDetailedCards';
import { Instagram } from "lucide-react";
import SectionErrorBoundary from "@/components/ui/SectionErrorBoundary";
export default function TeamSection(): React.JSX.Element {
return (
<div id="team" data-section="team">
<SectionErrorBoundary name="team">
<TeamDetailedCards
tag="Il Nostro Staff"
title="Professionisti a tuo servizio"
description="Accoglienza e professionalità per farti sentire a casa."
members={[
{
name: "Chef Marco",
role: "Executive Chef",
description: "Ricerca continua di sapori autentici.",
socialLinks: [
{
icon: Instagram,
url: "#",
},
],
imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-man-posing-indoors_23-2151038683.jpg",
},
{
name: "Giulia",
role: "Sommelier",
description: "Passione per le terre e le vigne.",
socialLinks: [
{
icon: Instagram,
url: "#",
},
],
imageSrc: "http://img.b2bpic.net/free-photo/front-view-man-holding-glass-wine_23-2148060598.jpg",
},
{
name: "Luca",
role: "Maître",
description: "Attenzione ad ogni dettaglio di sala.",
socialLinks: [
{
icon: Instagram,
url: "#",
},
],
imageSrc: "http://img.b2bpic.net/free-photo/businessman-dress-code-holding-black-jacket-his-arm_114579-15947.jpg",
},
]}
/>
</SectionErrorBoundary>
</div>
);
}

View File

@@ -0,0 +1,57 @@
// AUTO-GENERATED by per-section-migrate. Edit freely — Bob will treat this
// file as the canonical source for the "testimonials" section.
import React from 'react';
import TestimonialRatingCards from '@/components/sections/testimonial/TestimonialRatingCards';
import SectionErrorBoundary from "@/components/ui/SectionErrorBoundary";
export default function TestimonialsSection(): React.JSX.Element {
return (
<div id="testimonials" data-section="testimonials">
<SectionErrorBoundary name="testimonials">
<TestimonialRatingCards
tag="Dicono di noi"
title="Recensioni Gastronomiche"
description="Le parole dei nostri ospiti sono la nostra soddisfazione più grande."
testimonials={[
{
name: "Elena V.",
role: "Food Blogger",
quote: "Esperienza sublime, vini ricercati e un'atmosfera incredibile.",
rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/portrait-happy-dark-skinned-young-female-with-frizzy-hair-eats-something-drinks-smoothie-spends-free-time-with-boyfriend-friend-enjoys-summer-vacations-tropical-country-island_273609-2195.jpg",
},
{
name: "Roberto M.",
role: "Business Man",
quote: "Servizio impeccabile e cucina di livello stellato.",
rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/people-having-dinner-luxurious-restaurants_23-2151081914.jpg",
},
{
name: "Chiara B.",
role: "Locale",
quote: "Il miglior posto dove sentirsi coccolati.",
rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/portrait-smiling-brunette-woman-drinks-morning-coffee-cafe_613910-12134.jpg",
},
{
name: "Alessandro S.",
role: "Wine Lover",
quote: "Una cantina che sorprende ad ogni sorso.",
rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/side-view-friends-dinner-party_23-2151043670.jpg",
},
{
name: "Francesca T.",
role: "Turista",
quote: "Un angolo di paradiso ligure da provare.",
rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/portrait-handsome-asian-man-friends-reunion_23-2149244687.jpg",
},
]}
/>
</SectionErrorBoundary>
</div>
);
}