11 Commits

Author SHA1 Message Date
a75a251ab4 Update src/app/page.tsx 2026-04-17 09:07:06 +00:00
c0e596057b Merge version_3 into main
Merge version_3 into main
2026-04-17 09:03:11 +00:00
ca70fad004 Update src/app/products/page.tsx 2026-04-17 09:03:08 +00:00
ce06f87e70 Merge version_3 into main
Merge version_3 into main
2026-04-17 09:02:48 +00:00
fbed8ecc2f Update src/app/products/page.tsx 2026-04-17 09:02:42 +00:00
156978be17 Merge version_3 into main
Merge version_3 into main
2026-04-17 09:02:18 +00:00
a6f1357cb0 Update src/app/products/page.tsx 2026-04-17 09:02:15 +00:00
30a12305b1 Merge version_3 into main
Merge version_3 into main
2026-04-17 09:01:47 +00:00
6e401c80ee Add src/app/products/page.tsx 2026-04-17 09:01:41 +00:00
b586899a4c Merge version_2 into main
Merge version_2 into main
2026-04-17 08:57:21 +00:00
b0375132c5 Merge version_2 into main
Merge version_2 into main
2026-04-17 08:56:52 +00:00
2 changed files with 111 additions and 3 deletions

View File

@@ -46,7 +46,7 @@ export default function LandingPage() {
description="Experience spectacular homemade chocolates and artisanal bakes, crafted in small batches with passion and precision."
buttons={[
{ text: "Order Chocolates", href: "/shop" },
{ text: "Visit Us in Yercaud", href: "/yercaud" },
{ text: "Plan Your Yercaud Visit", href: "/yercaud" },
]}
imageSrc="http://img.b2bpic.net/free-photo/chocolate-roll-with-coffee-beans-pinecones-high-quality-photo_114579-26596.jpg"
mediaAnimation="blur-reveal"
@@ -64,7 +64,8 @@ export default function LandingPage() {
<TextAbout
useInvertedBackground={false}
title="Crafting Moments of Bliss"
buttons={[{ text: "Read Our Full Story", href: "/story" }]}
buttons={[{ text: "Read Our Full Story", href: "/story" }]
}
tag="Our Heritage"
tagIcon={Award}
tagAnimation="slide-up"
@@ -129,4 +130,4 @@ export default function LandingPage() {
</ReactLenis>
</ThemeProvider>
);
}
}

107
src/app/products/page.tsx Normal file
View File

@@ -0,0 +1,107 @@
"use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react";
import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
import HeroSplitKpi from '@/components/sections/hero/HeroSplitKpi';
import TestimonialAboutCard from '@/components/sections/about/TestimonialAboutCard';
import FaqBase from '@/components/sections/faq/FaqBase';
import FooterSimple from '@/components/sections/footer/FooterSimple';
import { ShoppingCart, MessageCircle, Star } from "lucide-react";
export default function ProductPage() {
return (
<ThemeProvider
defaultButtonVariant="hover-bubble"
defaultTextAnimation="background-highlight"
borderRadius="rounded"
contentWidth="medium"
sizing="large"
background="floatingGradient"
cardStyle="outline"
primaryButtonStyle="radial-glow"
secondaryButtonStyle="solid"
headingFontWeight="light"
>
<ReactLenis root>
<div id="nav" data-section="nav">
<NavbarStyleApple
brandName="VB the Bakery"
navItems={[
{ name: "Home", id: "/" },
{ name: "Shop", id: "/shop" },
{ name: "Products", id: "/products" },
{ name: "Our Story", id: "/story" },
{ name: "Contact", id: "/contact" },
]}
/>
</div>
<div id="hero" data-section="hero">
<HeroSplitKpi
background={{ variant: "plain" }}
title="Artisanal Cacao, Hand-Tempered."
description="Discover our signature 70% single-origin dark chocolate, infused with Yercaud coffee beans for an unparalleled finish."
imageSrc="http://img.b2bpic.net/free-photo/chocolate-roll-with-coffee-beans-pinecones-high-quality-photo_114579-26596.jpg?_wi=1"
enableKpiAnimation={true}
kpis={[
{ value: "70%", label: "Dark Cacao" },
{ value: "48h", label: "Stone Ground" },
{ value: "100%", label: "Single Origin" }
]}
/>
</div>
<div id="story-about" data-section="story-about">
<TestimonialAboutCard
title="Our Visual Story: The Bean to Bar Journey"
tag="The Process"
description="From estate to tempering."
subdescription="Discover the craft."
icon={Star}
imageSrc="http://img.b2bpic.net/free-photo/chocolate-roll-with-coffee-beans-pinecones-high-quality-photo_114579-26596.jpg?_wi=2"
useInvertedBackground={false}
/>
</div>
<div id="gifting" data-section="gifting">
<TestimonialAboutCard
title="The Boutique Gifting Experience"
tag="Boutique"
description="Premium packaging for every occasion."
subdescription="Gift elegance."
icon={Star}
imageSrc="http://img.b2bpic.net/free-photo/chocolate-roll-with-coffee-beans-pinecones-high-quality-photo_114579-26596.jpg?_wi=3"
useInvertedBackground={true}
/>
</div>
<div id="faq" data-section="faq">
<FaqBase
title="Product Details"
textboxLayout="default"
faqsAnimation="slide-up"
useInvertedBackground={false}
description="Everything you need to know about our chocolates."
faqs={[
{ id: "p1", title: "Sourcing", content: "Single origin cacao sourced directly from high-altitude estates." },
{ id: "p2", title: "Crafting", content: "Small batch, 48-hour stone grinding process for silky texture." },
{ id: "p3", title: "Storage", content: "Store in a cool, dry place away from direct sunlight." }
]}
/>
</div>
<div id="footer" data-section="footer">
<FooterSimple
columns={[
{ title: "Bakery", items: [{ label: "About" }, { label: "Contact" }] },
{ title: "Social", items: [{ label: "Instagram" }, { label: "Facebook" }] }
]}
bottomLeftText="© 2024 VB the Bakery"
bottomRightText="All Rights Reserved"
/>
</div>
</ReactLenis>
</ThemeProvider>
);
}