Initial commit

This commit is contained in:
dk
2025-12-28 11:55:49 +02:00
commit 6fceab9254
307 changed files with 62605 additions and 0 deletions

213
src/app/page.tsx Normal file
View File

@@ -0,0 +1,213 @@
"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 { Heart, Star, Quote, Instagram, Facebook } 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: "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="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: "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>
);
}