From 4ff8762f1ee6a16c13a023c3b62ff1870e571c86 Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 18 Apr 2026 14:41:55 +0000 Subject: [PATCH 1/4] Update src/app/about/page.tsx --- src/app/about/page.tsx | 25 +++++++++++++++++++++---- 1 file changed, 21 insertions(+), 4 deletions(-) diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx index 0ed0079..afa7363 100644 --- a/src/app/about/page.tsx +++ b/src/app/about/page.tsx @@ -8,11 +8,28 @@ import FooterMedia from '@/components/sections/footer/FooterMedia'; export default function AboutPage() { return ( - + - - - + +
+ +
+
); -- 2.49.1 From 8824667aaa9dbb7104e7afa6435e2ca6195947b8 Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 18 Apr 2026 14:41:55 +0000 Subject: [PATCH 2/4] Update src/app/contact/page.tsx --- src/app/contact/page.tsx | 25 +++++++++++++++++++++---- 1 file changed, 21 insertions(+), 4 deletions(-) diff --git a/src/app/contact/page.tsx b/src/app/contact/page.tsx index bcf2d9a..a7be39f 100644 --- a/src/app/contact/page.tsx +++ b/src/app/contact/page.tsx @@ -8,11 +8,28 @@ import FooterMedia from '@/components/sections/footer/FooterMedia'; export default function ContactPage() { return ( - + - - - + +
+ +
+
); -- 2.49.1 From 2eea5b3ee448649ef8e752702e30c13bfc277db3 Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 18 Apr 2026 14:41:56 +0000 Subject: [PATCH 3/4] Update src/app/recipe/page.tsx --- src/app/recipe/page.tsx | 24 ++++++++++-------------- 1 file changed, 10 insertions(+), 14 deletions(-) diff --git a/src/app/recipe/page.tsx b/src/app/recipe/page.tsx index 78098aa..74766de 100644 --- a/src/app/recipe/page.tsx +++ b/src/app/recipe/page.tsx @@ -4,7 +4,7 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import ReactLenis from "lenis/react"; import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered'; import FooterMedia from '@/components/sections/footer/FooterMedia'; -import SplitAbout from '@/components/sections/about/SplitAbout'; +import TextSplitAbout from '@/components/sections/about/TextSplitAbout'; import FeatureCardEight from '@/components/sections/feature/FeatureCardEight'; import TestimonialCardThirteen from '@/components/sections/testimonial/TestimonialCardThirteen'; @@ -26,20 +26,14 @@ export default function RecipePage() {
-
@@ -48,10 +42,11 @@ export default function RecipePage() { textboxLayout="default" title="Ingredients" description="Everything you need for this recipe:" + useInvertedBackground={false} features={[ - { title: "Fresh Herbs", description: "Hand-picked basil and thyme" }, - { title: "Organic Vegetables", description: "Seasonal local produce" }, - { title: "Quality Proteins", description: "Locally sourced and sustainable" } + { title: "Fresh Herbs", description: "Hand-picked basil and thyme", imageSrc: "http://img.b2bpic.net/free-photo/gourmet-meal-presentation_23-2149187313.jpg" }, + { title: "Organic Vegetables", description: "Seasonal local produce", imageSrc: "http://img.b2bpic.net/free-photo/gourmet-meal-presentation_23-2149187313.jpg" }, + { title: "Quality Proteins", description: "Locally sourced and sustainable", imageSrc: "http://img.b2bpic.net/free-photo/gourmet-meal-presentation_23-2149187313.jpg" } ]} /> @@ -63,6 +58,7 @@ export default function RecipePage() { showRating={true} textboxLayout="default" animationType="slide-up" + useInvertedBackground={false} testimonials={[ { id: "r1", name: "Jane Doe", handle: "@chefjane", testimonial: "Absolutely divine, made this twice already!", rating: 5 }, { id: "r2", name: "John Smith", handle: "@cookjohn", testimonial: "Great instructions, very easy to follow.", rating: 4 } @@ -72,7 +68,7 @@ export default function RecipePage() {
@@ -50,16 +50,17 @@ export default function RecipesPage() {