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() {