264 lines
9.4 KiB
TypeScript
264 lines
9.4 KiB
TypeScript
import AboutFeaturesSplit from '@/components/sections/about/AboutFeaturesSplit';
|
|
import ContactCta from '@/components/sections/contact/ContactCta';
|
|
import FaqSimple from '@/components/sections/faq/FaqSimple';
|
|
import FeaturesDetailedCards from '@/components/sections/features/FeaturesDetailedCards';
|
|
import HeroBillboardBrand from '@/components/sections/hero/HeroBillboardBrand';
|
|
import MetricsFeatureCards from '@/components/sections/metrics/MetricsFeatureCards';
|
|
import PricingMediaCards from '@/components/sections/pricing/PricingMediaCards';
|
|
import TestimonialColumnMarqueeCards from '@/components/sections/testimonial/TestimonialColumnMarqueeCards';
|
|
import { Award, Shield, Zap } from "lucide-react";
|
|
import SectionErrorBoundary from "@/components/ui/SectionErrorBoundary";
|
|
|
|
export default function HomePage() {
|
|
return (
|
|
<>
|
|
<div id="hero" data-section="hero">
|
|
<SectionErrorBoundary name="hero">
|
|
<HeroBillboardBrand
|
|
brand="Tavaduri"
|
|
description="Authentic Georgian heritage, crafted for the modern connoisseur. Experience the pinnacle of tradition with our premium artisanal offerings."
|
|
primaryButton={{
|
|
text: "Discover Collection",
|
|
href: "#products",
|
|
}}
|
|
secondaryButton={{
|
|
text: "Learn More",
|
|
href: "#about",
|
|
}}
|
|
imageSrc="http://img.b2bpic.net/free-photo/top-view-brown-round-plate-empty-glass-made-isolated-meal-table-color_140725-22365.jpg"
|
|
/>
|
|
</SectionErrorBoundary>
|
|
</div>
|
|
|
|
<div id="about" data-section="about">
|
|
<SectionErrorBoundary name="about">
|
|
<AboutFeaturesSplit
|
|
tag="Our Story"
|
|
title="A Legacy of Taste"
|
|
description="Tavaduri is born from a deep respect for Georgian traditions. We combine time-honored techniques with sustainable sourcing to deliver quality that defines excellence."
|
|
items={[
|
|
{
|
|
icon: Award,
|
|
title: "Artisanal Quality",
|
|
description: "Hand-selected ingredients prepared with traditional care.",
|
|
},
|
|
{
|
|
icon: Shield,
|
|
title: "Pure Heritage",
|
|
description: "100% authentic recipes passed through generations.",
|
|
},
|
|
{
|
|
icon: Zap,
|
|
title: "Fresh Commitment",
|
|
description: "Sustainable practices that respect both land and community.",
|
|
},
|
|
]}
|
|
imageSrc="http://img.b2bpic.net/free-photo/pumpkin-with-bow-ancient-kettle-marble_114579-40260.jpg"
|
|
/>
|
|
</SectionErrorBoundary>
|
|
</div>
|
|
|
|
<div id="products" data-section="products">
|
|
<SectionErrorBoundary name="products">
|
|
<FeaturesDetailedCards
|
|
tag="Our Selection"
|
|
title="Premium Artisanal Products"
|
|
description="Explore our curated range of products, crafted to bring the essence of Georgian culture to your table."
|
|
items={[
|
|
{
|
|
title: "Traditional Flavors",
|
|
description: "Authentic spices and ingredients sourced directly from the heart of Georgia.",
|
|
tags: [
|
|
"Artisanal",
|
|
"Heritage",
|
|
],
|
|
imageSrc: "http://img.b2bpic.net/free-photo/top-view-rural-vegetables-healthy-nutrition-there-are-ingredients-cooking-such-as-champignons-peppers-tomatoes-onion-lettuce-leaves-cucumber-zucchini-black-background-with-cop_639032-1333.jpg",
|
|
},
|
|
{
|
|
title: "Crafted Perfection",
|
|
description: "Precision in every batch, ensuring consistent quality for our discerning customers.",
|
|
tags: [
|
|
"Premium",
|
|
"Handmade",
|
|
],
|
|
imageSrc: "http://img.b2bpic.net/free-photo/side-view-woman-working-beer-factory_23-2150573904.jpg",
|
|
},
|
|
{
|
|
title: "Exquisite Packaging",
|
|
description: "Sustainable and beautiful designs that honor the product within.",
|
|
tags: [
|
|
"Sustainable",
|
|
"Premium",
|
|
],
|
|
imageSrc: "http://img.b2bpic.net/free-photo/copper-bowl-with-steam_23-2151934602.jpg",
|
|
},
|
|
]}
|
|
/>
|
|
</SectionErrorBoundary>
|
|
</div>
|
|
|
|
<div id="metrics" data-section="metrics">
|
|
<SectionErrorBoundary name="metrics">
|
|
<MetricsFeatureCards
|
|
tag="Our Impact"
|
|
title="Excellence in Numbers"
|
|
description="Our commitment to quality translates into tangible excellence, appreciated by our growing community."
|
|
metrics={[
|
|
{
|
|
value: "10k+",
|
|
title: "Satisfied Connoisseurs",
|
|
features: [
|
|
"Curated experience",
|
|
"Consistent delivery",
|
|
],
|
|
},
|
|
{
|
|
value: "50+",
|
|
title: "Artisan Partnerships",
|
|
features: [
|
|
"Community support",
|
|
"Sustainable trade",
|
|
],
|
|
},
|
|
{
|
|
value: "100%",
|
|
title: "Authentic Ingredients",
|
|
features: [
|
|
"No additives",
|
|
"Natural quality",
|
|
],
|
|
},
|
|
]}
|
|
/>
|
|
</SectionErrorBoundary>
|
|
</div>
|
|
|
|
<div id="pricing" data-section="pricing">
|
|
<SectionErrorBoundary name="pricing">
|
|
<PricingMediaCards
|
|
tag="Choose Your Experience"
|
|
title="Exceptional Value, Timeless Quality"
|
|
description="Select the package that fits your lifestyle and experience true Tavaduri quality today."
|
|
plans={[
|
|
{
|
|
tag: "Essentials",
|
|
price: "$45",
|
|
period: "monthly",
|
|
features: [
|
|
"Monthly curated selection",
|
|
"Free standard shipping",
|
|
"Access to member exclusives",
|
|
],
|
|
primaryButton: {
|
|
text: "Select Plan",
|
|
href: "#contact",
|
|
},
|
|
imageSrc: "http://img.b2bpic.net/free-photo/healthy-fruits-vegetables-hazelnuts-background-with-variety-desserts_23-2148193076.jpg",
|
|
},
|
|
{
|
|
tag: "Heritage",
|
|
price: "$89",
|
|
period: "monthly",
|
|
features: [
|
|
"All Essentials benefits",
|
|
"Priority access",
|
|
"Artisan gift box",
|
|
"Personalized recommendations",
|
|
],
|
|
primaryButton: {
|
|
text: "Select Plan",
|
|
href: "#contact",
|
|
},
|
|
imageSrc: "http://img.b2bpic.net/free-photo/carpenter-using-screwdriver-wood_23-2148643198.jpg",
|
|
},
|
|
]}
|
|
/>
|
|
</SectionErrorBoundary>
|
|
</div>
|
|
|
|
<div id="testimonials" data-section="testimonials">
|
|
<SectionErrorBoundary name="testimonials">
|
|
<TestimonialColumnMarqueeCards
|
|
tag="Connoisseurs"
|
|
title="What Our Community Says"
|
|
description="Honored to serve those who appreciate quality and authenticity."
|
|
testimonials={[
|
|
{
|
|
name: "Elena K.",
|
|
role: "Food Critic",
|
|
quote: "Tavaduri brings the real taste of Georgia to life. Exceptional quality.",
|
|
imageSrc: "http://img.b2bpic.net/free-photo/thrilled-confident-manager-business-attire-celebrates-victorious-milestone_482257-111932.jpg",
|
|
},
|
|
{
|
|
name: "George B.",
|
|
role: "Gourmet Chef",
|
|
quote: "The ingredients are simply unmatched. A true testament to Georgian tradition.",
|
|
imageSrc: "http://img.b2bpic.net/free-photo/two-happy-male-female-business-people-showing-thumbs-up-outdoors_1262-12567.jpg",
|
|
},
|
|
{
|
|
name: "Maria L.",
|
|
role: "Brand Consultant",
|
|
quote: "An exquisite experience from packaging to the very last bite.",
|
|
imageSrc: "http://img.b2bpic.net/free-photo/friends-talking-by-lunch_1098-14622.jpg",
|
|
},
|
|
{
|
|
name: "Alex R.",
|
|
role: "Lifestyle Blogger",
|
|
quote: "Authentic, reliable, and deeply rooted in culture. Highly recommended.",
|
|
imageSrc: "http://img.b2bpic.net/free-photo/young-woman-with-short-curly-hair-colorful-shirt-smiling-cheerfully-showing-thumbs-up-green-wall_141793-29344.jpg",
|
|
},
|
|
{
|
|
name: "David S.",
|
|
role: "Customer",
|
|
quote: "I've never tasted such richness. Truly a Tavaduri signature.",
|
|
imageSrc: "http://img.b2bpic.net/free-photo/people-enjoying-mexican-barbecue_23-2151000375.jpg",
|
|
},
|
|
]}
|
|
/>
|
|
</SectionErrorBoundary>
|
|
</div>
|
|
|
|
<div id="faq" data-section="faq">
|
|
<SectionErrorBoundary name="faq">
|
|
<FaqSimple
|
|
tag="Common Questions"
|
|
title="Everything You Need to Know"
|
|
description="Answers to frequently asked questions about Tavaduri products and services."
|
|
items={[
|
|
{
|
|
question: "Are your ingredients 100% natural?",
|
|
answer: "Yes, we exclusively source natural, organic ingredients free from additives.",
|
|
},
|
|
{
|
|
question: "Where is Tavaduri based?",
|
|
answer: "We are deeply rooted in Georgian traditions, with our headquarters centered in Tbilisi.",
|
|
},
|
|
{
|
|
question: "How do you ensure authenticity?",
|
|
answer: "We work closely with local artisan producers to maintain time-honored recipes.",
|
|
},
|
|
]}
|
|
/>
|
|
</SectionErrorBoundary>
|
|
</div>
|
|
|
|
<div id="contact" data-section="contact">
|
|
<SectionErrorBoundary name="contact">
|
|
<ContactCta
|
|
tag="Get in Touch"
|
|
text="Join the Tavaduri circle and experience the heritage. Ready to start your journey?"
|
|
primaryButton={{
|
|
text: "Contact Us",
|
|
href: "mailto:hello@tavaduri.com",
|
|
}}
|
|
secondaryButton={{
|
|
text: "Browse Catalog",
|
|
href: "#products",
|
|
}}
|
|
/>
|
|
</SectionErrorBoundary>
|
|
</div>
|
|
</>
|
|
);
|
|
}
|