Files
45327b5d-e21f-4c29-ae8b-fe0…/src/app/page.tsx
2026-05-05 06:41:06 +00:00

117 lines
5.3 KiB
TypeScript

"use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered';
import HeroBillboardCarousel from '@/components/sections/hero/HeroBillboardCarousel';
import MetricSplitMediaAbout from '@/components/sections/about/MetricSplitMediaAbout';
import ProductCardTwo from '@/components/sections/product/ProductCardTwo';
import ContactSplit from '@/components/sections/contact/ContactSplit';
import FooterBaseReveal from '@/components/sections/footer/FooterBaseReveal';
import { Flame, ChefHat, MapPin, Utensils, Clock, Store } from 'lucide-react';
export default function LandingPage() {
return (
<ThemeProvider
defaultButtonVariant="elastic-effect"
defaultTextAnimation="background-highlight"
borderRadius="soft"
contentWidth="medium"
sizing="medium"
background="fluid"
cardStyle="glass-elevated"
primaryButtonStyle="gradient"
secondaryButtonStyle="solid"
headingFontWeight="semibold"
>
<div id="nav" data-section="nav">
<NavbarStyleCentered
brandName="Mumma's Little Bakery"
navItems={[
{ name: "Our Story", id: "about" },
{ name: "Products", id: "cuts" },
{ name: "Visit Us", id: "contact" }
]}
button={{
text: "Order Online", href: "#contact"
}}
/>
</div>
<div id="hero" data-section="hero">
<HeroBillboardCarousel
title="Sun Valley's Finest Baked Goods"
description="Indulge in artisanal breads, cakes, and pastries, lovingly baked every day at Mumma's Little Bakery in Ajaypur Gwalior."
tag="Freshly Baked"
tagIcon={Store}
background={{ variant: "sparkles-gradient" }}
buttons={[
{ text: "See Our Menu", href: "#cuts" },
{ text: "Contact Us", href: "#contact" }
]}
mediaItems={[
{ imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3DIHqQ7fRNk0P3jhU0hGDnGVWkB/uploaded-1777963013798-0d86gnk8.jpg", imageAlt: "Freshly baked pastries" },
{ imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3DIHqQ7fRNk0P3jhU0hGDnGVWkB/uploaded-1777963013798-ycew4obu.jpg", imageAlt: "Artisanal bakery cakes" }
]}
/>
</div>
<div id="about" data-section="about">
<MetricSplitMediaAbout
tag="About Us"
tagIcon={ChefHat}
title="Mumma's Little Bakery"
description="Bringing the warmth of home-baked goodness to Sun Valley, Ajaypur. We use only the finest natural ingredients to craft memories you can taste."
metrics={[
{ value: "Daily", title: "Freshly Baked" },
{ value: "100%", title: "Natural Ingredients" }
]}
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3DIHqQ7fRNk0P3jhU0hGDnGVWkB/uploaded-1777963013798-tkxxikhl.jpg?_wi=1"
imageAlt="Bakery storefront"
useInvertedBackground={true}
/>
</div>
<div id="cuts" data-section="cuts">
<ProductCardTwo
title="Our Daily Selection"
description="Explore our range of fresh breads, decadent cakes, and sweet treats crafted with love."
tag="Treats"
tagIcon={Utensils}
products={[
{ id: "1", brand: "Bakery", name: "Artisanal Sourdough", price: "₹150", rating: 5, reviewCount: "45", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3DIHqQ7fRNk0P3jhU0hGDnGVWkB/uploaded-1777963013798-u4kqxz76.jpg" },
{ id: "2", brand: "Bakery", name: "Chocolate Fudge Cake", price: "₹650", rating: 5, reviewCount: "89", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3DIHqQ7fRNk0P3jhU0hGDnGVWkB/uploaded-1777963013798-kr1ci5wo.jpg?_wi=1" },
{ id: "3", brand: "Bakery", name: "Butter Croissants", price: "₹80", rating: 4, reviewCount: "62", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3DIHqQ7fRNk0P3jhU0hGDnGVWkB/uploaded-1777963013798-kr1ci5wo.jpg?_wi=2" }
]}
gridVariant="three-columns-all-equal-width"
animationType="slide-up"
textboxLayout="default"
useInvertedBackground={false}
/>
</div>
<div id="contact" data-section="contact">
<ContactSplit
tag="Visit Us"
title="Find Us in Ajaypur"
description="Located in Sun Valley, Ajaypur Gwalior. Visit us for freshly baked goods or place your custom orders with us."
tagIcon={MapPin}
background={{ variant: "rotated-rays-static" }}
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3DIHqQ7fRNk0P3jhU0hGDnGVWkB/uploaded-1777963013798-tkxxikhl.jpg?_wi=2"
useInvertedBackground={false}
/>
</div>
<div id="footer" data-section="footer">
<FooterBaseReveal
logoText="Mumma's Little Bakery"
columns={[
{ title: "Menu", items: [{ label: "View All", href: "#cuts" }] },
{ title: "Business Hours", items: [{ label: "Mon-Sun: 9 AM - 9 PM", href: "#" }] },
{ title: "Address", items: [{ label: "Sun Valley, Ajaypur, Gwalior", href: "#" }] }
]}
/>
</div>
</ThemeProvider>
);
}