Merge version_1 into main #13

Merged
bender merged 1 commits from version_1 into main 2026-04-08 14:34:35 +00:00

View File

@@ -1,4 +1,5 @@
'use client';
"use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay';
import HeroSplitDoubleCarousel from '@/components/sections/hero/HeroSplitDoubleCarousel';
@@ -9,7 +10,9 @@ import ProductCardOne from '@/components/sections/product/ProductCardOne';
import ContactText from '@/components/sections/contact/ContactText';
import FooterLogoReveal from '@/components/sections/footer/FooterLogoReveal';
const navItems = [{ name: "Home", id: "/" }];
const navItems = [
{ name: "Home", id: "/" },
];
export default function Page() {
return (
@@ -26,73 +29,68 @@ export default function Page() {
headingFontWeight="normal"
>
<div id="nav" data-section="nav">
<NavbarLayoutFloatingOverlay navItems={navItems} brandName="Enoteca L'Angolo Di Vino" />
<NavbarLayoutFloatingOverlay navItems={navItems} />
</div>
<div id="hero" data-section="hero">
<HeroSplitDoubleCarousel
title="Boutique Italian Wine Experience"
description="Discover curated premium Italian wines, expert sommelier advice, and unique tasting experiences."
background={{ variant: 'radial-gradient' }}
leftCarouselItems={[{ imageSrc: "https://images.unsplash.com/photo-1510812431401-41d6bd2722f3?q=80&w=1000" }]}
rightCarouselItems={[{ imageSrc: "https://images.unsplash.com/photo-1584225064785-c65a765d7065?q=80&w=1000" }]}
title="Welcome to Our Platform"
description="Experience the next generation of digital solutions."
background={{ variant: "plain" }}
leftCarouselItems={[]}
rightCarouselItems={[]}
/>
</div>
<div id="social-proof" data-section="social-proof">
<SocialProofOne
names={["Sommelier Guild", "Wine Spectator", "Italian Heritage", "Gambero Rosso"]}
title="Trusted Partners"
description="Recognized by leading authorities in the global wine community."
names={["Company A", "Company B"]}
title="Trusted by Industry Leaders"
description="We work with the best in the business to bring you quality service."
textboxLayout="default"
useInvertedBackground={false}
/>
</div>
<div id="about" data-section="about">
<TextSplitAbout
title="Our Story"
description={["Enoteca L'Angolo Di Vino was born from a passion for authentic Italian viticulture.", "We bridge the gap between boutique Italian vineyards and wine enthusiasts worldwide."]}
useInvertedBackground={false}
title="About Us"
description={["We are a team of experts dedicated to excellence.", "Our mission is to simplify your workflow."]}
/>
</div>
<div id="signature" data-section="signature">
<FeatureCardSeven
title="Our Services"
description="From curated subscriptions to guided tastings, we bring Italy to your glass."
animationType="blur-reveal"
textboxLayout="default"
useInvertedBackground={false}
title="Our Signature Features"
description="Everything you need to succeed in one place."
features={[
{ title: "Expert Curation", description: "Hand-picked bottles from small-batch producers.", imageSrc: "https://images.unsplash.com/photo-1594973878266-16982f9d77f2?q=80&w=500" },
{ title: "Private Tastings", description: "Tailored experiences for groups and connoisseurs.", imageSrc: "https://images.unsplash.com/photo-1576092768241-de83f87e0129?q=80&w=500" }
{ title: "Speed", description: "Lightning fast performance.", imageSrc: "" },
{ title: "Reliability", description: "Always available when you need us.", imageSrc: "" }
]}
animationType="slide-up"
textboxLayout="default"
/>
</div>
<div id="menu" data-section="menu">
<ProductCardOne
title="Curated Selections"
description="Explore our current featured bottles from the regions of Tuscany, Piedmont, and Veneto."
gridVariant="uniform-all-items-equal"
animationType="blur-reveal"
textboxLayout="default"
useInvertedBackground={false}
title="Our Services"
description="Explore our range of offerings."
products={[
{ id: "1", name: "Brunello di Montalcino", price: "$95.00", imageSrc: "https://images.unsplash.com/photo-1516594948961-24698d56b14d?q=80&w=500" },
{ id: "2", name: "Barolo Riserva", price: "$120.00", imageSrc: "https://images.unsplash.com/photo-1586375300773-8384e3e4916f?q=80&w=500" },
{ id: "3", name: "Amarone della Valpolicella", price: "$85.00", imageSrc: "https://images.unsplash.com/photo-1571501679680-de32f1e7aad4?q=80&w=500" }
{ id: "1", name: "Service A", price: "$99", imageSrc: "" },
{ id: "2", name: "Service B", price: "$149", imageSrc: "" },
{ id: "3", name: "Service C", price: "$199", imageSrc: "" }
]}
gridVariant="uniform-all-items-equal"
animationType="slide-up"
textboxLayout="default"
/>
</div>
<div id="contact" data-section="contact">
<ContactText
text="Ready to explore the art of Italian wine? Visit us today or contact our sommeliers for private event inquiries."
background={{ variant: 'radial-gradient' }}
useInvertedBackground={false}
text="Ready to get started?"
background={{ variant: "plain" }}
/>
</div>
<div id="footer" data-section="footer">
<FooterLogoReveal
logoText="L'Angolo Di Vino"
leftLink={{ text: "Privacy Policy", href: "#" }}
rightLink={{ text: "Terms of Service", href: "#" }}
logoText="OurBrand"
leftLink={{ text: "Privacy", href: "/privacy" }}
rightLink={{ text: "Terms", href: "/terms" }}
/>
</div>
</ThemeProvider>