Merge version_2 into main

Merge version_2 into main
This commit was merged in pull request #4.
This commit is contained in:
2026-05-13 11:25:50 +00:00

View File

@@ -3,15 +3,11 @@
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react";
import ContactCTA from '@/components/sections/contact/ContactCTA';
import FaqSplitMedia from '@/components/sections/faq/FaqSplitMedia';
import FeatureCardTwentyFive from '@/components/sections/feature/FeatureCardTwentyFive';
import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis';
import HeroOverlay from '@/components/sections/hero/HeroOverlay';
import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay';
import ProductCardTwo from '@/components/sections/product/ProductCardTwo';
import TestimonialCardSix from '@/components/sections/testimonial/TestimonialCardSix';
import TextSplitAbout from '@/components/sections/about/TextSplitAbout';
import { Coffee, Croissant, Wheat, MapPin, Phone } from "lucide-react";
export default function LandingPage() {
return (
@@ -28,69 +24,70 @@ export default function LandingPage() {
headingFontWeight="bold"
>
<ReactLenis root>
<div id="nav" data-section="nav">
<NavbarLayoutFloatingOverlay
navItems={[
{ name: "Home", id: "hero" },
{ name: "About", id: "about" },
{ name: "Menu", id: "menu" },
{ name: "Contact", id: "contact" },
]}
brandName="The Diamond Café & Bakery"
/>
</div>
<div id="nav" data-section="nav">
<NavbarLayoutFloatingOverlay
navItems={[
{ name: "Home", id: "hero" },
{ name: "About", id: "about" },
{ name: "Menu", id: "menu" },
{ name: "Contact", id: "contact" },
]}
brandName="The Diamond Café & Bakery"
/>
</div>
<div id="hero" data-section="hero">
<HeroOverlay
title="The Diamond Café & Bakery"
description="Authentic flavors, artisanal bakes, and freshly brewed coffee. Located in Kasindra, Gujarat."
imageSrc="http://img.b2bpic.net/free-photo/gourmet-french-pastry-collection-no-people-indoors-generated-by-ai_188544-40763.jpg?_wi=1"
showBlur={true}
/>
</div>
<div id="hero" data-section="hero">
<HeroOverlay
title="The Diamond Café & Bakery"
description="Authentic flavors, artisanal bakes, and freshly brewed coffee. Located in Kasindra, Gujarat."
imageSrc="http://img.b2bpic.net/free-photo/gourmet-french-pastry-collection-no-people-indoors-generated-by-ai_188544-40763.jpg?_wi=1"
showBlur={true}
/>
</div>
<div id="about" data-section="about">
<TextSplitAbout
useInvertedBackground={true}
title="About Our Bakery"
description={[
"The Diamond Café & Bakery is your destination for premium artisanal breads and hand-crafted coffees.", "Located at Ground Floor, Kavya Villa, Dholka-Ahmedabad Highway, Kasindra, Gujarat, we pride ourselves on delivering quality in every bite."
]}
/>
</div>
<div id="about" data-section="about">
<TextSplitAbout
useInvertedBackground={true}
title="About Our Bakery"
description={[
"The Diamond Café & Bakery is your destination for premium artisanal breads and hand-crafted coffees.", "Located at Ground Floor, Kavya Villa, Dholka-Ahmedabad Highway, Kasindra, Gujarat, we pride ourselves on delivering quality in every bite."
]}
/>
</div>
<div id="menu" data-section="menu">
<ProductCardTwo
animationType="slide-up"
textboxLayout="default"
gridVariant="three-columns-all-equal-width"
useInvertedBackground={true}
title="Our Offerings"
description="Enjoy our daily specials with an average price range of ₹1200 per person."
products={[
{ id: "p1", brand: "Bakery", name: "Fresh Croissants", price: "₹80", imageSrc: "http://img.b2bpic.net/free-photo/tart-with-profiteroles-top-with-whipped-cream_114579-64592.jpg" },
{ id: "p2", brand: "Coffee", name: "Signature Brew", price: "₹120", imageSrc: "http://img.b2bpic.net/free-photo/latte-art-coffee-cup_1203-3295.jpg" },
{ id: "p3", brand: "Bakery", name: "Assorted Muffins", price: "₹90", imageSrc: "http://img.b2bpic.net/free-photo/beautiful-delicious-dessert-blueberries-mint_23-2148718713.jpg" }
]}
/>
</div>
<div id="menu" data-section="menu">
<ProductCardTwo
animationType="slide-up"
textboxLayout="default"
gridVariant="three-columns-all-equal-width"
useInvertedBackground={true}
title="Our Offerings"
description="Enjoy our daily specials with an average price range of ₹1200 per person."
products={[
{ id: "p1", brand: "Bakery", name: "Fresh Croissants", price: "₹80", rating: 5, reviewCount: "45", imageSrc: "http://img.b2bpic.net/free-photo/tart-with-profiteroles-top-with-whipped-cream_114579-64592.jpg" },
{ id: "p2", brand: "Coffee", name: "Signature Brew", price: "₹120", rating: 5, reviewCount: "82", imageSrc: "http://img.b2bpic.net/free-photo/latte-art-coffee-cup_1203-3295.jpg" },
{ id: "p3", brand: "Bakery", name: "Assorted Muffins", price: "₹90", rating: 4, reviewCount: "31", imageSrc: "http://img.b2bpic.net/free-photo/beautiful-delicious-dessert-blueberries-mint_23-2148718713.jpg" }
]}
/>
</div>
<div id="contact" data-section="contact">
<ContactCTA
tag="Contact Us"
title="Visit Us Today"
description="Ground Floor, Kavya Villa, Dholka-Ahmedabad Highway, Kasindra, Gujarat | Call: 083201 23185"
buttons={[{ text: "Call Now", href: "tel:08320123185" }, { text: "Get Directions", href: "#" }]}
background={{ variant: "plain" }}
/>
</div>
<div id="contact" data-section="contact">
<ContactCTA
tag="Contact Us"
title="Visit Us Today"
description="Ground Floor, Kavya Villa, Dholka-Ahmedabad Highway, Kasindra, Gujarat | Call: 083201 23185"
buttons={[{ text: "Call Now", href: "tel:08320123185" }, { text: "Get Directions", href: "#" }]}
background={{ variant: "plain" }}
useInvertedBackground={false}
/>
</div>
<div id="footer" data-section="footer">
<FooterLogoEmphasis
logoText="The Diamond Café & Bakery"
columns={[{ items: [{ label: "About", href: "#about" }, { label: "Menu", href: "#menu" }, { label: "Contact", href: "#contact" }] }]}
/>
</div>
<div id="footer" data-section="footer">
<FooterLogoEmphasis
logoText="The Diamond Café & Bakery"
columns={[{ items: [{ label: "About", href: "#about" }, { label: "Menu", href: "#menu" }, { label: "Contact", href: "#contact" }] }]}
/>
</div>
</ReactLenis>
</ThemeProvider>
);