From d359025f14c4d01a7aba383398181ce89bbb11f6 Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 21 Apr 2026 09:00:11 +0000 Subject: [PATCH 1/5] Update src/app/about/page.tsx --- src/app/about/page.tsx | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx index ff29f96..ff83479 100644 --- a/src/app/about/page.tsx +++ b/src/app/about/page.tsx @@ -35,6 +35,10 @@ export default function AboutPage() { useInvertedBackground={false} description="Born and raised in Northern Cambria, our bakery started as a dream to bring authentic, homemade sweetness to our local community. We use time-honored techniques and the finest ingredients to craft cheesecakes, cupcakes, and pastries that feel like home." imageSrc="http://img.b2bpic.net/free-photo/portrait-smiling-baker-holding-mould-stack-tray_1170-2040.jpg" + bulletPoints={[ + { title: "Handcrafted Quality", description: "Every treat is made from scratch." }, + { title: "Local Roots", description: "Proudly serving Northern Cambria since 2024." } + ]} /> Date: Tue, 21 Apr 2026 09:00:12 +0000 Subject: [PATCH 2/5] Update src/app/contact/page.tsx --- src/app/contact/page.tsx | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/app/contact/page.tsx b/src/app/contact/page.tsx index 7f2d8b4..8851350 100644 --- a/src/app/contact/page.tsx +++ b/src/app/contact/page.tsx @@ -30,6 +30,8 @@ export default function ContactPage() {
Date: Tue, 21 Apr 2026 09:00:12 +0000 Subject: [PATCH 3/5] Update src/app/menu/page.tsx --- src/app/menu/page.tsx | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/src/app/menu/page.tsx b/src/app/menu/page.tsx index 17a0986..73eca66 100644 --- a/src/app/menu/page.tsx +++ b/src/app/menu/page.tsx @@ -8,7 +8,18 @@ import FooterBaseReveal from '@/components/sections/footer/FooterBaseReveal'; export default function MenuPage() { return ( - + Date: Tue, 21 Apr 2026 09:00:13 +0000 Subject: [PATCH 4/5] Update src/app/order/page.tsx --- src/app/order/page.tsx | 15 ++++++++++++++- 1 file changed, 14 insertions(+), 1 deletion(-) diff --git a/src/app/order/page.tsx b/src/app/order/page.tsx index bebf4c6..8c363a8 100644 --- a/src/app/order/page.tsx +++ b/src/app/order/page.tsx @@ -8,13 +8,26 @@ import FooterBaseReveal from '@/components/sections/footer/FooterBaseReveal'; export default function OrderPage() { return ( - + Date: Tue, 21 Apr 2026 09:00:13 +0000 Subject: [PATCH 5/5] Update src/app/page.tsx --- src/app/page.tsx | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 9183f90..5e3724a 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -4,10 +4,6 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import ReactLenis from "lenis/react"; import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay'; import HeroBillboardTestimonial from '@/components/sections/hero/HeroBillboardTestimonial'; -import FeatureCardNineteen from '@/components/sections/feature/FeatureCardNineteen'; -import InlineImageSplitTextAbout from '@/components/sections/about/InlineImageSplitTextAbout'; -import TestimonialCardFive from '@/components/sections/testimonial/TestimonialCardFive'; -import TeamCardEleven from '@/components/sections/team/TeamCardEleven'; import FooterBaseReveal from '@/components/sections/footer/FooterBaseReveal'; const navLinks = [ @@ -45,6 +41,7 @@ export default function LandingPage() { description="Freshly baked with love in Northern Cambria." buttons={[{ text: "Order Now", href: "/contact" }]} imageSrc="http://img.b2bpic.net/free-photo/waitress-holding-cake_23-2147821281.jpg?_wi=1" + testimonials={[{ name: "Jane Doe", handle: "@janedoe", testimonial: "The best cheesecake I've ever had!", rating: 5 }]} />
-- 2.49.1