5 Commits

Author SHA1 Message Date
c377d6ad9f Merge version_3 into main
Merge version_3 into main
2026-03-06 14:59:37 +00:00
bec3d7076a Update src/app/page.tsx 2026-03-06 14:59:33 +00:00
5e1d20ea91 Update src/app/layout.tsx 2026-03-06 14:59:33 +00:00
4ba580b0f2 Merge version_2 into main
Merge version_2 into main
2026-03-06 14:57:14 +00:00
1091931266 Update src/app/page.tsx 2026-03-06 14:57:10 +00:00
2 changed files with 28 additions and 27 deletions

View File

@@ -1416,4 +1416,4 @@ export default function RootLayout({
</ServiceWrapper>
</html>
);
}
}

View File

@@ -1,11 +1,11 @@
"use client";
import { Award, HelpCircle, Mail, Sparkles } from "lucide-react";
import { Award, HelpCircle, Mail, Sparkles, Clock, MapPin, Phone } from "lucide-react";
import NavbarStyleCentered from "@/components/navbar/NavbarStyleCentered/NavbarStyleCentered";
import HeroBillboard from "@/components/sections/hero/HeroBillboard";
import InlineImageSplitTextAbout from "@/components/sections/about/InlineImageSplitTextAbout";
import ProductCardTwo from "@/components/sections/product/ProductCardTwo";
import TestimonialCardFifteen from "@/components/sections/testimonial/TestimonialCardFifteen";
import TestimonialCardThirteen from "@/components/sections/testimonial/TestimonialCardThirteen";
import FaqSplitMedia from "@/components/sections/faq/FaqSplitMedia";
import ContactCTA from "@/components/sections/contact/ContactCTA";
import FooterBaseCard from "@/components/sections/footer/FooterBaseCard";
@@ -74,7 +74,7 @@ export default function SweetBakeryPage() {
<div id="products" data-section="products">
<ProductCardTwo
title="Premium Selections"
description="Handcrafted with love and the finest ingredients"
description="Loved by 3,000+ customers • Handcrafted daily with premium ingredients"
tag="Best Sellers"
tagIcon={Award}
tagAnimation="slide-up"
@@ -97,23 +97,24 @@ export default function SweetBakeryPage() {
</div>
<div id="testimonials" data-section="testimonials">
<TestimonialCardFifteen
testimonial="The quality and freshness of the baked goods are absolutely exceptional. Every item tastes like it was just pulled from the oven. This is my go-to bakery for special occasions and everyday treats. Highly recommended!"
rating={5}
author="Sarah Mitchell, Food Blogger"
ratingAnimation="slide-up"
avatarsAnimation="slide-up"
useInvertedBackground={false}
avatars={[
<TestimonialCardThirteen
testimonials={[
{
src: "http://img.b2bpic.net/free-photo/portrait-smiley-business-woman_23-2148603029.jpg", alt: "Sarah Mitchell"},
id: "1", name: "Sarah Mitchell", handle: "@sarahmitchell", testimonial: "The quality and freshness of the baked goods are absolutely exceptional. Every item tastes like it was just pulled from the oven. This is my go-to bakery for special occasions!", rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/portrait-smiley-business-woman_23-2148603029.jpg", imageAlt: "Sarah Mitchell"},
{
src: "http://img.b2bpic.net/free-photo/confident-entrepreneur-satisfied-with-own-success_1163-5474.jpg", alt: "Customer testimonial"},
id: "2", name: "James Rodriguez", handle: "@jamesrodriguez", testimonial: "Fantastic selection of artisanal breads and pastries. The croissants are divine and the customer service is outstanding. Highly recommended!", rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/confident-entrepreneur-satisfied-with-own-success_1163-5474.jpg", imageAlt: "James Rodriguez"},
{
src: "http://img.b2bpic.net/free-vector/avatar-set_23-2147503328.jpg", alt: "Customer testimonial"},
{
src: "http://img.b2bpic.net/free-photo/portrait-sexy-handsome-fashion-businessman-model-dressed-elegant-blue-suit-posing-street-background-metrosexual_158538-10546.jpg", alt: "Customer testimonial"},
id: "3", name: "Emily Chen", handle: "@emilychen", testimonial: "Their custom cakes are absolutely stunning and taste even better than they look. I've ordered for three events and every time was perfect!", rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/portrait-sexy-handsome-fashion-businessman-model-dressed-elegant-blue-suit-posing-street-background-metrosexual_158538-10546.jpg", imageAlt: "Emily Chen"},
]}
showRating={true}
title="What Our Customers Say"
description="Real feedback from people who love our baked goods"
textboxLayout="default"
useInvertedBackground={false}
animationType="slide-up"
/>
</div>
@@ -150,14 +151,14 @@ export default function SweetBakeryPage() {
<div id="contact" data-section="contact">
<ContactCTA
tag="Let's Connect"
tag="Get in Touch"
tagIcon={Mail}
tagAnimation="slide-up"
title="Ready to Place Your Order?"
description="Reach out to us today to order our freshly baked goods, inquire about custom cakes, or simply say hello. We'd love to hear from you!"
title="Visit Us or Order Online"
description="Stop by our bakery to experience the aroma of fresh-baked goods, or place your order online for convenient pickup and delivery. We're here to serve you!"
buttons={[
{ text: "Contact Us", href: "#" },
{ text: "Visit Our Shop", href: "#" },
{ text: "Call Us", href: "tel:555-0123" },
{ text: "Find Location", href: "#" },
]}
buttonAnimation="slide-up"
background={{ variant: "radial-gradient" }}
@@ -184,10 +185,10 @@ export default function SweetBakeryPage() {
],
},
{
title: "Support", items: [
{ label: "Contact", href: "#contact" },
{ label: "FAQ", href: "#faq" },
{ label: "Orders", href: "#" },
title: "Visit Us", items: [
{ label: "Hours: Mon-Sat 5AM-8PM", href: "#" },
{ label: "123 Baker Street", href: "#" },
{ label: "Phone: (555) 0123", href: "tel:555-0123" },
],
},
{
@@ -203,4 +204,4 @@ export default function SweetBakeryPage() {
</div>
</ThemeProvider>
);
}
}