1 Commits

Author SHA1 Message Date
kudinDmitriyUp
325e905221 Bob AI: Adjust color theme and fonts for LAppetit Pastry Shop 2026-06-20 19:46:45 +00:00
10 changed files with 363 additions and 262 deletions

View File

@@ -5,15 +5,15 @@
:root {
/* @colorThemes/lightTheme/grayNavyBlue */
--background: #f6f0e9;
--card: #efe7dd;
--foreground: #2b180a;
--primary-cta: #2b180a;
--primary-cta-text: #f6f0e9;
--secondary-cta: #efe7dd;
--secondary-cta-text: #2b180a;
--accent: #94877c;
--background-accent: #afa094;
--background: #fff8f0;
--card: #ffe8d6;
--foreground: #4a3b32;
--primary-cta: #d4a373;
--primary-cta-text: #ffffff;
--secondary-cta: #e5989b;
--secondary-cta-text: #ffffff;
--accent: #b5838d;
--background-accent: #ffb4a2;
/* @layout/border-radius/rounded */
--radius: 1.5rem;
@@ -88,8 +88,8 @@
--color-background-accent: var(--background-accent);
/* Fonts */
--font-sans: 'Inter Tight', sans-serif;
--font-tight: "Inter Tight", sans-serif;
--font-sans: 'Lora', serif;
--font-tight: 'Lora', serif;
--font-mono: monospace;
/* Border Radius */

View File

@@ -1,263 +1,36 @@
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";
// AUTO-GENERATED shell by per-section-migrate.
// Section bodies live in ./<PageBase>/sections/<X>.tsx. Edit the section
// files directly. Non-block content (wrappers, non-inlinable sections) is
// preserved inline; extracted section blocks become <XSection/> refs.
export default function HomePage() {
import React from 'react';
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 (
<>
<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>
<>
<HeroSection />
<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>
<AboutSection />
<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>
<ProductsSection />
<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>
<MetricsSection />
<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>
<PricingSection />
<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>
<TestimonialsSection />
<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>
<FaqSection />
<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>
<ContactSection />
</>
);
}

View File

@@ -0,0 +1,39 @@
// 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>
);
}

View File

@@ -0,0 +1,27 @@
// 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>
);
}

View File

@@ -0,0 +1,34 @@
// 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>
);
}

View File

@@ -0,0 +1,28 @@
// 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>
);
}

View File

@@ -0,0 +1,46 @@
// 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>
);
}

View File

@@ -0,0 +1,53 @@
// 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>
);
}

View File

@@ -0,0 +1,49 @@
// 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>
);
}

View File

@@ -0,0 +1,52 @@
// 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>
);
}