Merge version_2 into main #7

Merged
bender merged 1 commits from version_2 into main 2026-04-06 10:45:49 +00:00

View File

@@ -7,9 +7,10 @@ import TextAbout from '@/components/sections/about/TextAbout';
import MetricCardEleven from '@/components/sections/metrics/MetricCardEleven';
import ContactText from '@/components/sections/contact/ContactText';
import FooterLogoReveal from '@/components/sections/footer/FooterLogoReveal';
import { Star } from 'lucide-react';
export default function Page() {
const navItems = [{ name: 'Home', id: 'nav' }, { name: 'Menu', id: 'products' }, { name: 'Contact', id: 'contact' }];
const navItems = [{ name: 'Home', id: '/' }];
return (
<ThemeProvider
defaultButtonVariant="text-stagger"
@@ -33,68 +34,61 @@ export default function Page() {
buttons={[{ text: "Explore Menu", href: "#products" }, { text: "Visit Us Today", href: "#contact" }]}
slides={[
{ imageSrc: "http://img.b2bpic.net/free-photo/delicious-drink-with-lemon_23-2149617135.jpg", imageAlt: "luxury patisserie chocolate pouring" },
{ imageSrc: "http://img.b2bpic.net/front-view-delicious-donuts-concept_23-2148761706.jpg", imageAlt: "elegant cake display gold accents" },
{ imageSrc: "http://img.b2bpic.net/collection-various-cakes-table_1262-20058.jpg", imageAlt: "elegant ice cream service luxury" }
{ imageSrc: "http://img.b2bpic.net/free-photo/front-view-delicious-donuts-concept_23-2148761706.jpg", imageAlt: "elegant cake display gold accents" },
{ imageSrc: "http://img.b2bpic.net/free-photo/restaurant-table-with-two-couches-near-window_140725-8459.jpg", imageAlt: "fresh gelato scoop wooden counter" }
]}
/>
</div>
<div id="testimonials" data-section="testimonials">
<TestimonialCardFifteen
testimonial="Best ice cream I ever had. The attention to detail in every scoop is remarkable."
testimonial="The finest patisserie in Evia. Truly unforgettable flavors and warm service."
rating={5}
author="Sarah J."
avatars={[{ src: "http://img.b2bpic.net/free-photo/portrait-waitress-holding-plate-with-muffin_107420-12322.jpg", alt: "Sarah J." }]}
author="Helen P."
avatars={[{ src: "http://img.b2bpic.net/free-photo/woman-standing-front-glass-showcase-with-pastries_171337-16936.jpg", alt: "Customer" }]}
ratingAnimation="blur-reveal"
avatarsAnimation="blur-reveal"
useInvertedBackground={false}
/>
</div>
<div id="products" data-section="products">
<ProductCardOne
title="Signature Creations"
description="Made daily using real butter, fresh milk, and seasonal ingredients."
animationType="slide-up"
gridVariant="three-columns-all-equal-width"
textboxLayout="split-description"
useInvertedBackground={false}
description="Handcrafted daily using traditional techniques."
gridVariant="asymmetric-60-wide-40-narrow"
animationType="blur-reveal"
textboxLayout="split"
products={[
{ id: "p1", name: "Galaktoboureko", price: "€5.50", imageSrc: "http://img.b2bpic.net/free-photo/four-delicious-baklava-dark-plate_114579-50125.jpg" },
{ id: "p2", name: "Profiterole", price: "€6.00", imageSrc: "http://img.b2bpic.net/chocolate-balls-ai-generated-image_268835-6150.jpg" },
{ id: "p3", name: "Artisanal Gelato", price: "€4.00", imageSrc: "http://img.b2bpic.net/still-life-cookies-ice-cream_23-2149637192.jpg" }
{ id: "p2", name: "Profiterole", price: "€6.00", imageSrc: "http://img.b2bpic.net/free-photo/chocolate-balls-ai-generated-image_268835-6150.jpg" }
]}
/>
</div>
<div id="about" data-section="about">
<TextAbout
title="A Legacy of Sweetness"
useInvertedBackground={false}
title="Legacy of Tradition"
tag="Since 2015"
buttons={[{ text: "Our Story" }]}
/>
</div>
<div id="brand-story" data-section="brand-story">
<MetricCardEleven
title="Our Process"
description="Traditional methods refined for modern palates."
animationType="slide-up"
textboxLayout="split"
useInvertedBackground={false}
title="Crafted with Passion"
animationType="blur-reveal"
metrics={[
{ id: "m1", value: "2015", title: "Founded", description: "Started in the heart of Evia.", imageSrc: "http://img.b2bpic.net/free-photo/shop-assistant-holding-pastry_23-2147984963.jpg" }
{ id: "1", value: "10k+", title: "Happy Guests", description: "Serving the local community with pride.", imageSrc: "http://img.b2bpic.net/free-photo/asian-couple-shopping-flowers-barcelona_657883-571.jpg" }
]}
/>
</div>
<div id="contact" data-section="contact">
<ContactText
text="Come visit our boutique for a sensory treat in the heart of Evia."
text="Come visit us in Evia for a sweet escape."
background={{ variant: "sparkles-gradient" }}
useInvertedBackground={false}
buttons={[{ text: "Get Directions", href: "#" }]}
/>
</div>
<div id="footer" data-section="footer">
<FooterLogoReveal
logoText="Constantine & Helens"
leftLink={{ text: "Privacy Policy", href: "#" }}
rightLink={{ text: "© 2025", href: "#" }}
rightLink={{ text: "Terms & Conditions", href: "#" }}
/>
</div>
</ThemeProvider>