Compare commits
11 Commits
version_2_
...
main
| Author | SHA1 | Date | |
|---|---|---|---|
| 5921cca7cc | |||
| 6a1498a909 | |||
| 327c2d69e8 | |||
| 9550f8b7b2 | |||
| 1d7e55d36f | |||
| f5c1da8cb8 | |||
| c169267aa6 | |||
| df1cac3430 | |||
| 90f63969b9 | |||
| f0c9390073 | |||
| 70ccdf74ea |
@@ -5,15 +5,15 @@
|
|||||||
|
|
||||||
:root {
|
:root {
|
||||||
/* @colorThemes/lightTheme/grayNavyBlue */
|
/* @colorThemes/lightTheme/grayNavyBlue */
|
||||||
--background: #fff8f0;
|
--background: #f6f0e9;
|
||||||
--card: #ffe8d6;
|
--card: #efe7dd;
|
||||||
--foreground: #4a3b32;
|
--foreground: #2b180a;
|
||||||
--primary-cta: #d4a373;
|
--primary-cta: #2b180a;
|
||||||
--primary-cta-text: #ffffff;
|
--primary-cta-text: #f6f0e9;
|
||||||
--secondary-cta: #e5989b;
|
--secondary-cta: #efe7dd;
|
||||||
--secondary-cta-text: #ffffff;
|
--secondary-cta-text: #2b180a;
|
||||||
--accent: #b5838d;
|
--accent: #94877c;
|
||||||
--background-accent: #ffb4a2;
|
--background-accent: #afa094;
|
||||||
|
|
||||||
/* @layout/border-radius/rounded */
|
/* @layout/border-radius/rounded */
|
||||||
--radius: 1.5rem;
|
--radius: 1.5rem;
|
||||||
@@ -88,8 +88,8 @@
|
|||||||
--color-background-accent: var(--background-accent);
|
--color-background-accent: var(--background-accent);
|
||||||
|
|
||||||
/* Fonts */
|
/* Fonts */
|
||||||
--font-sans: 'Lora', serif;
|
--font-sans: 'Inter Tight', sans-serif;
|
||||||
--font-tight: 'Lora', serif;
|
--font-tight: "Inter Tight", sans-serif;
|
||||||
--font-mono: monospace;
|
--font-mono: monospace;
|
||||||
|
|
||||||
/* Border Radius */
|
/* Border Radius */
|
||||||
|
|||||||
@@ -1,36 +1,263 @@
|
|||||||
// AUTO-GENERATED shell by per-section-migrate.
|
import AboutFeaturesSplit from '@/components/sections/about/AboutFeaturesSplit';
|
||||||
// Section bodies live in ./<PageBase>/sections/<X>.tsx. Edit the section
|
import ContactCta from '@/components/sections/contact/ContactCta';
|
||||||
// files directly. Non-block content (wrappers, non-inlinable sections) is
|
import FaqSimple from '@/components/sections/faq/FaqSimple';
|
||||||
// preserved inline; extracted section blocks become <XSection/> refs.
|
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";
|
||||||
|
|
||||||
import React from 'react';
|
export default function HomePage() {
|
||||||
import HeroSection from './HomePage/sections/Hero';
|
|
||||||
import AboutSection from './HomePage/sections/About';
|
|
||||||
import ProductsSection from './HomePage/sections/Products';
|
|
||||||
import MetricsSection from './HomePage/sections/Metrics';
|
|
||||||
import PricingSection from './HomePage/sections/Pricing';
|
|
||||||
import TestimonialsSection from './HomePage/sections/Testimonials';
|
|
||||||
import FaqSection from './HomePage/sections/Faq';
|
|
||||||
import ContactSection from './HomePage/sections/Contact';
|
|
||||||
|
|
||||||
export default function HomePage(): React.JSX.Element {
|
|
||||||
return (
|
return (
|
||||||
<>
|
<>
|
||||||
<HeroSection />
|
<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>
|
||||||
|
|
||||||
<AboutSection />
|
<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>
|
||||||
|
|
||||||
<ProductsSection />
|
<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>
|
||||||
|
|
||||||
<MetricsSection />
|
<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>
|
||||||
|
|
||||||
<PricingSection />
|
<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>
|
||||||
|
|
||||||
<TestimonialsSection />
|
<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>
|
||||||
|
|
||||||
<FaqSection />
|
<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>
|
||||||
|
|
||||||
<ContactSection />
|
<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>
|
||||||
</>
|
</>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,39 +0,0 @@
|
|||||||
// 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 AboutFeaturesSplit from '@/components/sections/about/AboutFeaturesSplit';
|
|
||||||
import { Award, Shield, Zap } from "lucide-react";
|
|
||||||
import SectionErrorBoundary from "@/components/ui/SectionErrorBoundary";
|
|
||||||
|
|
||||||
export default function AboutSection(): React.JSX.Element {
|
|
||||||
return (
|
|
||||||
<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>
|
|
||||||
);
|
|
||||||
}
|
|
||||||
@@ -1,27 +0,0 @@
|
|||||||
// 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="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>
|
|
||||||
);
|
|
||||||
}
|
|
||||||
@@ -1,34 +0,0 @@
|
|||||||
// AUTO-GENERATED by per-section-migrate. Edit freely — Bob will treat this
|
|
||||||
// file as the canonical source for the "faq" section.
|
|
||||||
|
|
||||||
import React from 'react';
|
|
||||||
import FaqSimple from '@/components/sections/faq/FaqSimple';
|
|
||||||
import SectionErrorBoundary from "@/components/ui/SectionErrorBoundary";
|
|
||||||
|
|
||||||
export default function FaqSection(): React.JSX.Element {
|
|
||||||
return (
|
|
||||||
<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>
|
|
||||||
);
|
|
||||||
}
|
|
||||||
@@ -1,28 +0,0 @@
|
|||||||
// 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 HeroBillboardBrand from '@/components/sections/hero/HeroBillboardBrand';
|
|
||||||
import SectionErrorBoundary from "@/components/ui/SectionErrorBoundary";
|
|
||||||
|
|
||||||
export default function HeroSection(): React.JSX.Element {
|
|
||||||
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>
|
|
||||||
);
|
|
||||||
}
|
|
||||||
@@ -1,46 +0,0 @@
|
|||||||
// 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 MetricsFeatureCards from '@/components/sections/metrics/MetricsFeatureCards';
|
|
||||||
import SectionErrorBoundary from "@/components/ui/SectionErrorBoundary";
|
|
||||||
|
|
||||||
export default function MetricsSection(): React.JSX.Element {
|
|
||||||
return (
|
|
||||||
<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>
|
|
||||||
);
|
|
||||||
}
|
|
||||||
@@ -1,53 +0,0 @@
|
|||||||
// 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 PricingMediaCards from '@/components/sections/pricing/PricingMediaCards';
|
|
||||||
import SectionErrorBoundary from "@/components/ui/SectionErrorBoundary";
|
|
||||||
|
|
||||||
export default function PricingSection(): React.JSX.Element {
|
|
||||||
return (
|
|
||||||
<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>
|
|
||||||
);
|
|
||||||
}
|
|
||||||
@@ -1,49 +0,0 @@
|
|||||||
// AUTO-GENERATED by per-section-migrate. Edit freely — Bob will treat this
|
|
||||||
// file as the canonical source for the "products" section.
|
|
||||||
|
|
||||||
import React from 'react';
|
|
||||||
import FeaturesDetailedCards from '@/components/sections/features/FeaturesDetailedCards';
|
|
||||||
import SectionErrorBoundary from "@/components/ui/SectionErrorBoundary";
|
|
||||||
|
|
||||||
export default function ProductsSection(): React.JSX.Element {
|
|
||||||
return (
|
|
||||||
<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>
|
|
||||||
);
|
|
||||||
}
|
|
||||||
@@ -1,52 +0,0 @@
|
|||||||
// 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 TestimonialColumnMarqueeCards from '@/components/sections/testimonial/TestimonialColumnMarqueeCards';
|
|
||||||
import SectionErrorBoundary from "@/components/ui/SectionErrorBoundary";
|
|
||||||
|
|
||||||
export default function TestimonialsSection(): React.JSX.Element {
|
|
||||||
return (
|
|
||||||
<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>
|
|
||||||
);
|
|
||||||
}
|
|
||||||
Reference in New Issue
Block a user