diff --git a/src/pages/HomePage.tsx b/src/pages/HomePage.tsx
index fa80e70..a07d126 100644
--- a/src/pages/HomePage.tsx
+++ b/src/pages/HomePage.tsx
@@ -6,165 +6,131 @@ import FeaturesImageBento from '@/components/sections/features/FeaturesImageBent
import HeroOverlay from '@/components/sections/hero/HeroOverlay';
import MetricsSimpleCards from '@/components/sections/metrics/MetricsSimpleCards';
import TestimonialOverlayCards from '@/components/sections/testimonial/TestimonialOverlayCards';
-import { Clock, Flame, Users } from "lucide-react";
import SectionErrorBoundary from "@/components/ui/SectionErrorBoundary";
export default function HomePage() {
return (
<>
-
-
+
+
-
-
+ tag="Experience True Flavours"
+ title="Leicester Afro Caribbean Kitchen"
+ description="Authentic, vibrant, and soul-satisfying dishes served with love in the heart of Leicester."
+ primaryButton={{ text: "Order Now", href: "#contact" }}
+ secondaryButton={{ text: "Our Story", href: "#about" }}
+ imageSrc="http://img.b2bpic.net/free-photo/couple-having-fun-night_23-2149236889.jpg"
+ />
+
+
-
-
+
+ tag="Our Heritage"
+ title="Taste the Soul of Africa"
+ description="Established with a passion for bringing the rich, aromatic flavours of the Caribbean and West Africa to Leicester. Every dish tells a story of tradition."
+ items={[
+ { icon: "Flame", title: "Authentic Spices", description: "Hand-picked spices from original sources." },
+ { icon: "Users", title: "Family Friendly", description: "A welcoming environment for all occasions." },
+ { icon: "Clock", title: "Freshly Prepared", description: "Made daily with the highest quality ingredients." },
+ ]}
+ imageSrc="http://img.b2bpic.net/free-photo/chef-putting-tomatoes-avocado_23-2148471901.jpg"
+ />
+
+
-
-
-
+
+
-
-
+ tag="Our Impact"
+ title="Serving Joy Since Day One"
+ description="Numbers reflecting our community growth."
+ metrics={[
+ { value: "98+", description: "Happy Reviews" },
+ { value: "4.6", description: "Google Rating" },
+ { value: "100s", description: "Meals Served Daily" },
+ ]}
+ />
+
+
-
-
+
+
-
-
+ tag="What People Say"
+ title="Voices of Our Community"
+ description="We are honored by the support from our lovely customers."
+ testimonials={[
+ { name: "Krisztina K.", role: "Local Guide", company: "Customer", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/side-close-up-view-dish-sauces-stuffed-cabbage-multicolored-checkered-tablecloth-bowls-herbs-sauces-table_140725-110425.jpg" },
+ { name: "Cameron F.", role: "Regular", company: "Customer", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/grilled-chicken-breast-sprinkled-with-pepper-placed-wooden-plate_1150-19842.jpg" },
+ { name: "Craig D.", role: "Local Guide", company: "Customer", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/high-angle-delicious-kebab-slate-with-salad_23-2148685501.jpg" },
+ { name: "Sarah J.", role: "Diner", company: "Customer", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/vegetable-soup-served-with-herbs_141793-1024.jpg" },
+ { name: "David K.", role: "Foodie", company: "Customer", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/high-angle-tasty-kebab-plate-with-condiments_23-2148685470.jpg" },
+ ]}
+ />
+
+
-
-
+
+
-
-
+ tag="Helpful Info"
+ title="Frequently Asked Questions"
+ description="Find answers to common questions about our service."
+ items={[
+ { question: "Do you offer delivery?", answer: "Yes, we offer delivery services throughout Leicester." },
+ { question: "Can I dine in?", answer: "Yes, we have a welcoming dining area for you." },
+ { question: "What are your operating hours?", answer: "We are open until 1 am, check our latest updates on our social pages." },
+ ]}
+ />
+
+
-
-
+
+
-
-
+ tag="Our Commitment"
+ title="Why We Are The Best"
+ description="We strive for excellence in every single plate."
+ steps={[
+ { tag: "Quality", title: "Fresh Ingredients", subtitle: "Sourced daily", description: "We never compromise on the quality of our produce.", imageSrc: "http://img.b2bpic.net/free-photo/top-view-winter-peas-soup-bowl_23-2148706375.jpg" },
+ { tag: "Taste", title: "Traditional Recipes", subtitle: "Grandma's secrets", description: "Authentic recipes passed down through generations.", imageSrc: "http://img.b2bpic.net/free-photo/top-view-tasty-meat-soup-with-potatoes-rice-inside-little-plate-dark-surface-meal-food-salad-restaurant-dinner-kitchen-dish-horizontal_140725-158714.jpg" },
+ { tag: "Service", title: "Top Notch Care", subtitle: "Friendly staff", description: "We treat every guest like family.", imageSrc: "http://img.b2bpic.net/free-photo/steak-brazillian-style_1339-8289.jpg" },
+ ]}
+ />
+
+
-
>
);
}