Files
20edd09e-cbfc-403d-82df-776…/src/app/page.tsx
2025-12-28 10:08:32 +00:00

255 lines
10 KiB
TypeScript

"use client"
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen';
import HeroBillboard from '@/components/sections/hero/HeroBillboard';
import TestimonialAboutCard from '@/components/sections/about/TestimonialAboutCard';
import ProductCardFive from '@/components/sections/product/ProductCardFive';
import TestimonialCardThirteen from '@/components/sections/testimonial/TestimonialCardThirteen';
import ContactCenterForm from '@/components/sections/contact/ContactCenterForm';
import FooterSocial from '@/components/sections/footer/FooterSocial';
import MetricCardSeven from '@/components/sections/metrics/MetricCardSeven';
import { Heart, Star, Quote, Instagram, Facebook, MapPin, Phone, Clock } from "lucide-react";
export default function LandingPage() {
return (
<ThemeProvider
defaultButtonVariant="elastic-effect"
defaultTextAnimation="reveal-blur"
borderRadius="sharp"
contentWidth="medium"
sizing="largeSmall"
background="circleGradient"
cardStyle="gradient-radial"
primaryButtonStyle="gradient"
secondaryButtonStyle="layered"
headingFontWeight="bold"
>
<div id="nav" data-section="nav">
<NavbarStyleFullscreen
navItems={[
{ name: "Home", id: "home" },
{ name: "About", id: "about" },
{ name: "Products", id: "products" },
{ name: "Locations", id: "locations" },
{ name: "Contact", id: "contact" }
]}
brandName="Sweet Bakes"
bottomLeftText="Freshly Baked Daily"
bottomRightText="hello@sweetbakes.com"
/>
</div>
<div id="hero" data-section="hero">
<HeroBillboard
title="Welcome to Sweet Bakes"
description="Handcrafted pastries and fresh-baked goods made with love every morning. Order now for same-day delivery."
tag="Artisan Bakery"
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766823074689-81v54jo8.jpg"
imageAlt="Fresh bakery display with pastries and bread"
frameStyle="card"
buttons={[
{ text: "Order Now", href: "products" },
{ text: "Learn More", href: "about" }
]}
/>
</div>
<div id="about" data-section="about">
<TestimonialAboutCard
tag="Our Story"
title="Started in a small kitchen, now serving hundreds of happy customers daily. Every pastry is made with the finest ingredients."
description="Maria Santos"
subdescription="Owner & Head Baker"
icon={Heart}
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766140152452-p4x3ah4p.jpg"
imageAlt="Maria Santos, bakery owner"
useInvertedBackground="noInvert"
/>
</div>
<div id="products" data-section="products">
<ProductCardFive
title="Our Signature Collection"
description="Explore our best-selling bakery items made fresh daily with premium ingredients"
tag="Best Sellers"
tagIcon={Star}
textboxLayout="default"
gridVariant="uniform-all-items-equal"
animationType="slide-up"
useInvertedBackground="noInvert"
products={[
{
id: "1",
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766245914004-rta09f98.jpg",
imageAlt: "Buttery croissant",
button: { text: "Add to Order", href: "contact" },
isFavorited: false
},
{
id: "2",
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766815285364-7q7e9roz.jpg",
imageAlt: "Artisan sourdough bread",
button: { text: "Add to Order", href: "contact" },
isFavorited: false
},
{
id: "3",
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766849870204-lmbcrr56.jpg",
imageAlt: "Decadent chocolate cake",
button: { text: "Add to Order", href: "contact" },
isFavorited: false
},
{
id: "4",
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766915699751-fy2shocj.jpg",
imageAlt: "Glazed donuts",
button: { text: "Add to Order", href: "contact" },
isFavorited: false
}
]}
/>
</div>
<div id="locations" data-section="locations">
<MetricCardSeven
title="Our Bakery Locations"
description="Visit one of our fresh bakeries in your neighborhood. Open daily for your favorite treats."
tag="Find Us"
tagIcon={MapPin}
textboxLayout="default"
gridVariant="uniform-all-items-equal"
animationType="slide-up"
useInvertedBackground="noInvert"
metrics={[
{
id: "1",
value: "123 Bread St",
title: "Downtown Main Store",
items: ["6am - 8pm Daily", "Phone: (555) 123-4567", "Prime Location"]
},
{
id: "2",
value: "456 Pastry Ln",
title: "Riverside North Branch",
items: ["7am - 7pm Daily", "Phone: (555) 234-5678", "Spacious Seating"]
},
{
id: "3",
value: "789 Croissant Ave",
title: "Uptown Premium Location",
items: ["6:30am - 9pm Daily", "Phone: (555) 345-6789", "Extended Hours"]
},
{
id: "4",
value: "321 Sourdough St",
title: "West End Community Hub",
items: ["7am - 6pm Daily", "Phone: (555) 456-7890", "Community Events"]
}
]}
/>
</div>
<div id="testimonials" data-section="testimonials">
<TestimonialCardThirteen
title="What Our Customers Say"
description="Join hundreds of satisfied customers who love our fresh-baked treats"
tag="Reviews"
tagIcon={Quote}
textboxLayout="default"
animationType="slide-up"
useInvertedBackground="noInvert"
showRating={true}
testimonials={[
{
id: "1",
name: "Sarah Mitchell",
handle: "@sarahmitchell",
testimonial: "The croissants here are absolutely incredible! Perfectly buttery and fresh every single time. My go-to spot for breakfast.",
rating: 5,
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766154635301-vse33sxl.jpg",
imageAlt: "Sarah Mitchell"
},
{
id: "2",
name: "James Chen",
handle: "@jameschen92",
testimonial: "Best sourdough in town! The flavor is incredible and they use only natural ingredients. Worth every penny.",
rating: 5,
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766183842429-uezzjpov.jpg",
imageAlt: "James Chen"
},
{
id: "3",
name: "Emma Rodriguez",
handle: "@emmarod",
testimonial: "I order their birthday cakes for all my celebrations. Beautiful designs and absolutely delicious. Highly recommended!",
rating: 5,
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766184309647-aqbmmuiq.jpg",
imageAlt: "Emma Rodriguez"
},
{
id: "4",
name: "David Thompson",
handle: "@davidthompson",
testimonial: "Sweet Bakes has become my daily ritual. Their pastries are made with such care and attention to detail. Love this place!",
rating: 5,
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766849444575-td00y2fe.jpg",
imageAlt: "David Thompson"
}
]}
/>
</div>
<div id="contact" data-section="contact">
<ContactCenterForm
title="Place Your Order"
description="Fill out the form below to order your favorite fresh-baked items. We'll confirm your order within 2 hours."
useInvertedBackground="noInvert"
buttonText="Send Order"
inputs={[
{ name: "name", type: "text", placeholder: "Your Name", required: true },
{ name: "email", type: "email", placeholder: "Email Address", required: true },
{ name: "phone", type: "tel", placeholder: "Phone Number", required: true }
]}
textarea={{ name: "order", placeholder: "What would you like to order? Include quantities and any special requests...", rows: 5, required: true }}
/>
</div>
<div id="footer" data-section="footer">
<FooterSocial
logoText="Sweet Bakes"
columns={[
{
title: "Company",
items: [
{ label: "About Us", href: "about" },
{ label: "Locations", href: "locations" },
{ label: "Contact", href: "contact" }
]
},
{
title: "Products",
items: [
{ label: "Pastries", href: "products" },
{ label: "Custom Orders", href: "contact" }
]
},
{
title: "Legal",
items: [
{ label: "Privacy Policy", href: "#" },
{ label: "Terms of Service", href: "#" }
]
}
]}
socialLinks={[
{ icon: Instagram, href: "https://instagram.com", ariaLabel: "Instagram" },
{ icon: Facebook, href: "https://facebook.com", ariaLabel: "Facebook" }
]}
copyrightText="© Sweet Bakes, 2025. All rights reserved."
/>
</div>
</ThemeProvider>
);
}