Merge version_2 into main #1

Merged
bender merged 2 commits from version_2 into main 2026-04-15 16:53:01 +00:00
2 changed files with 90 additions and 192 deletions

View File

@@ -2,222 +2,120 @@
import ReactLenis from "lenis/react";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarLayoutFloatingInline from "@/components/navbar/NavbarLayoutFloatingInline";
import HeroBillboard from "@/components/sections/hero/HeroBillboard";
import TextAbout from "@/components/sections/about/TextAbout";
import ProductCardOne from "@/components/sections/product/ProductCardOne";
import MetricCardFourteen from "@/components/sections/metrics/MetricCardFourteen";
import TestimonialCardTen from "@/components/sections/testimonial/TestimonialCardTen";
import NavbarStyleApple from "@/components/navbar/NavbarStyleApple/NavbarStyleApple";
import HeroSplitDualMedia from "@/components/sections/hero/HeroSplitDualMedia";
import MediaAbout from "@/components/sections/about/MediaAbout";
import ProductCardThree from "@/components/sections/product/ProductCardThree";
import FeatureCardSixteen from "@/components/sections/feature/FeatureCardSixteen";
import ContactText from "@/components/sections/contact/ContactText";
import FooterLogoReveal from "@/components/sections/footer/FooterLogoReveal";
import { Sparkles } from "lucide-react";
import TestimonialCardOne from "@/components/sections/testimonial/TestimonialCardOne";
import ContactSplit from "@/components/sections/contact/ContactSplit";
import FooterBase from "@/components/sections/footer/FooterBase";
import { Wine, ChefHat, MessageSquare, PhoneCall } from "lucide-react";
export default function ItalianRestaurantPage() {
export default function EnOsteriaPage() {
return (
<ThemeProvider
defaultButtonVariant="icon-arrow"
defaultTextAnimation="background-highlight"
borderRadius="soft"
defaultButtonVariant="hover-magnetic"
defaultTextAnimation="reveal-blur"
borderRadius="pill"
contentWidth="medium"
sizing="mediumLarge"
background="floatingGradient"
cardStyle="glass-elevated"
primaryButtonStyle="shadow"
secondaryButtonStyle="layered"
headingFontWeight="semibold"
sizing="medium"
background="noise"
cardStyle="glass-depth"
primaryButtonStyle="radial-glow"
secondaryButtonStyle="glass"
headingFontWeight="medium"
>
<ReactLenis root>
<div id="nav" data-section="nav">
<NavbarLayoutFloatingInline
brandName="Bella Italia"
<div id="nav">
<NavbarStyleApple
brandName="EnOsteria da Andrei"
navItems={[
{ name: "Menu", id: "menu" },
{ name: "About", id: "about" },
{ name: "Reservations", id: "contact" },
{ name: "Reviews", id: "testimonials" }
{ name: "Dishes", id: "menu" },
{ name: "Wine", id: "wine" },
{ name: "Testimonials", id: "testimonials" },
{ name: "Contact", id: "contact" }
]}
button={{
text: "Book a Table",
href: "contact"
}}
/>
</div>
<div id="hero" data-section="hero">
<HeroBillboard
title="Welcome to Bella Italia"
description="Authentic Italian cuisine crafted with passion and tradition. Experience the flavors of Italy in every dish."
background={{ variant: "sparkles-gradient" }}
<div id="hero">
<HeroSplitDualMedia
title="The Essence of Italian Elegance"
description="Experience a curated journey of authentic Italian tradition at EnOsteria da Andrei, where every plate tells a story."
tag="Fine Dining"
tagIcon={Sparkles}
imageSrc="https://img.b2bpic.net/premium-photo/tasted-famous-italian-food_119101-260.jpg?id=6608694"
imageAlt="Elegant Italian restaurant dining room"
buttons={[
{ text: "Reserve Now", href: "contact" },
{ text: "View Menu", href: "menu" }
tagIcon={ChefHat}
rating={5}
ratingText="Award-winning cuisine"
background={{ variant: "sparkles-gradient" }}
mediaItems={[
{ imageSrc: "https://img.b2bpic.net/free-photo/gourmet-pasta-dish-served-with-fine-wine_114579-245.jpg", imageAlt: "Signature Pasta" },
{ imageSrc: "https://img.b2bpic.net/free-photo/fine-dining-restaurant-interior_114579-102.jpg", imageAlt: "Interior View" }
]}
/>
</div>
<div id="about" data-section="about">
<TextAbout
title="At Bella Italia, we honor the rich culinary traditions of Italy while celebrating the art of fine dining. Every dish tells a story of tradition, craftsmanship, and love for food."
useInvertedBackground={false}
buttons={[
{ text: "Learn More", href: "#" }
]}
/>
</div>
<div id="menu" data-section="menu">
<ProductCardOne
title="Featured Dishes"
description="Discover our signature dishes, carefully crafted using authentic Italian recipes and premium ingredients."
<div id="menu">
<ProductCardThree
title="Signature Dishes"
description="Crafted with locally sourced seasonal ingredients."
gridVariant="asymmetric-60-wide-40-narrow"
animationType="blur-reveal"
textboxLayout="split"
products={[
{
id: "1",
name: "Tagliatelle al Ragù",
price: "$28",
imageSrc: "https://img.b2bpic.net/free-photo/italian-spaghetti-tomato-sauce-with-parmesan-inside-blue-plate-top-view_114579-1556.jpg",
imageAlt: "Tagliatelle al Ragù with meat sauce"
},
{
id: "2",
name: "Risotto ai Funghi",
price: "$26",
imageSrc: "https://img.b2bpic.net/free-photo/pasta-tomato-sauce-with-chopped-parmesan-tomato-basilic_114579-919.jpg",
imageAlt: "Creamy mushroom risotto"
},
{
id: "3",
name: "Tiramisu Tradizionale",
price: "$12",
imageSrc: "https://img.b2bpic.net/free-photo/top-view-chicken-spaghetti-with-bell-peppers-parsley_140725-312.jpg",
imageAlt: "Classic tiramisu dessert"
}
{ id: "1", name: "Truffle Tagliatelle", price: "$34", imageSrc: "https://img.b2bpic.net/free-photo/truffle-tagliatelle-gourmet_114579-456.jpg" },
{ id: "2", name: "Osso Buco", price: "$42", imageSrc: "https://img.b2bpic.net/free-photo/osso-buco-traditional_114579-789.jpg" }
]}
/>
</div>
<div id="wine">
<MediaAbout
title="The Cellar Selection"
description="We invite you to explore our extensive wine collection, featuring rare labels from the most prestigious vineyards in Tuscany and Piedmont."
imageSrc="https://img.b2bpic.net/free-photo/wine-cellar-selection_114579-333.jpg"
tag="Sommelier Choice"
tagIcon={Wine}
useInvertedBackground={true}
/>
</div>
<div id="testimonials">
<TestimonialCardOne
title="Guest Experiences"
description="Voices of those who have journeyed through our menu."
gridVariant="three-columns-all-equal-width"
animationType="slide-up"
textboxLayout="default"
useInvertedBackground={false}
/>
</div>
<div id="impact" data-section="impact">
<MetricCardFourteen
title="Celebrating Our Success"
tag="By The Numbers"
metrics={[
{
id: "1",
value: "25+",
description: "Years of excellence in authentic Italian cuisine and hospitality"
},
{
id: "2",
value: "50,000+",
description: "Happy customers who have enjoyed memorable dining experiences at Bella Italia"
}
]}
metricsAnimation="slide-up"
useInvertedBackground={true}
/>
</div>
<div id="testimonials" data-section="testimonials">
<TestimonialCardTen
title="What Our Guests Say"
description="Experience the warmth and authenticity that our visitors cherish about Bella Italia."
animationType="scale-rotate"
textboxLayout="split-description"
testimonials={[
{
id: "1",
title: "An Unforgettable Evening",
quote: "The pasta was absolutely divine! Every bite transported me straight to Italy. The ambiance, the service, everything was perfect. We'll definitely be back.",
name: "Maria Rossi",
role: "Food Critic",
imageSrc: "https://img.b2bpic.net/free-photo/culinary-expert-commercial-kitchen-prepares-dish-with-fresh-basil-parsley_482257-124314.jpg",
imageAlt: "Maria Rossi"
},
{
id: "2",
title: "Authentic Italian Magic",
quote: "This is the most authentic Italian restaurant I've found in the city. The chef clearly knows his craft, and it shows in every plate. A true gem!",
name: "Giovanni Ferrari",
role: "Restaurant Enthusiast",
imageSrc: "https://img.b2bpic.net/free-photo/chef-white-uniform-garnishes-plated-dish-with-herbs-spices_482257-121123.jpg",
imageAlt: "Giovanni Ferrari"
},
{
id: "3",
title: "Perfect for Special Occasions",
quote: "We celebrated our anniversary here and it was spectacular. The attention to detail, the wine pairings, the warmth of the staff simply extraordinary.",
name: "Elena Marchetti",
role: "Couple",
imageSrc: "https://img.b2bpic.net/free-photo/close-up-chef-cooking-restaurant-kitchen_329181-16131.jpg",
imageAlt: "Elena Marchetti"
},
{
id: "4",
title: "Worth Every Visit",
quote: "I've been coming to Bella Italia for three years now. The consistency, quality, and passion never wavers. It's become my second home.",
name: "Antonio Bianchi",
role: "Regular Guest",
imageSrc: "https://img.b2bpic.net/free-photo/chef-workg-together-professional-kitchen_23-2149727992.jpg",
imageAlt: "Antonio Bianchi"
}
{ id: "1", name: "Elena V.", role: "Connoisseur", rating: 5, quote: "An impeccable balance of tradition and modernity." },
{ id: "2", name: "Marco P.", role: "Regular", rating: 5, quote: "The best wine pairing experience in the city." },
{ id: "3", name: "Sofia L.", role: "Guest", rating: 5, quote: "EnOsteria defines the standard for fine Italian dining." }
]}
textboxLayout="default"
useInvertedBackground={true}
/>
</div>
<div id="comparison" data-section="comparison">
<FeatureCardSixteen
title="What Sets Us Apart"
description="Traditional Italian dining elevated with modern hospitality and exceptional service."
animationType="slide-up"
textboxLayout="default"
useInvertedBackground={false}
negativeCard={{
items: [
"Frozen pre-made ingredients",
"Inconsistent flavors",
"Rushed service",
"Limited wine selection"
]
}}
positiveCard={{
items: [
"Fresh ingredients sourced daily from Italy",
"Consistent excellence in every dish",
"Attentive, unhurried service",
"Curated selection of Italian wines"
]
}}
<div id="contact">
<ContactSplit
tag="Reservations"
title="Join Us Tonight"
description="We look forward to welcoming you to EnOsteria da Andrei for an unforgettable evening."
imageSrc="https://img.b2bpic.net/free-photo/elegant-restaurant-table-setup_114579-567.jpg"
mediaPosition="right"
background={{ variant: "gradient-bars" }}
/>
</div>
<div id="contact" data-section="contact">
<ContactText
text="Ready to experience authentic Italian cuisine? Reserve your table at Bella Italia and join us for an evening of culinary excellence."
background={{ variant: "plain" }}
buttons={[
{ text: "Make a Reservation", href: "https://example.com/reservations" },
{ text: "Contact Us", href: "mailto:info@bellaitalia.com" }
<div id="footer">
<FooterBase
logoText="EnOsteria da Andrei"
columns={[
{ title: "Location", items: [{ label: "123 Gourmet Ave", href: "#" }] },
{ title: "Hours", items: [{ label: "Tue-Sun 6pm-11pm", href: "#" }] }
]}
useInvertedBackground={false}
/>
</div>
<div id="footer" data-section="footer">
<FooterLogoReveal
logoText="Bella Italia"
leftLink={{ text: "Privacy Policy", href: "#privacy" }}
rightLink={{ text: "Contact Us", href: "#contact" }}
/>
</div>
</ReactLenis>
</ThemeProvider>
);
}
}

View File

@@ -10,15 +10,15 @@
--accent: #ffffff;
--background-accent: #ffffff; */
--background: #f5f5f5;
--card: #ffffff;
--foreground: #1c1c1c;
--primary-cta: #1c1c1c;
--background: #0a0a0a;
--card: #1a1a1a;
--foreground: #ffffff;
--primary-cta: #c89bff;
--primary-cta-text: #f5f5f5;
--secondary-cta: #ffffff;
--secondary-cta: #1a1a1a;
--secondary-cta-text: #1c1c1c;
--accent: #e63946;
--background-accent: #e8bea8;
--accent: #b8860b;
--background-accent: #1a1a1a;
/* text sizing - set by ThemeProvider */
/* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem);