diff --git a/src/pages/HomePage.tsx b/src/pages/HomePage.tsx
index 9ffff36..4359b35 100644
--- a/src/pages/HomePage.tsx
+++ b/src/pages/HomePage.tsx
@@ -5,203 +5,118 @@ import FeaturesImageBento from '@/components/sections/features/FeaturesImageBent
import HeroBillboard from '@/components/sections/hero/HeroBillboard';
import MetricsIconCards from '@/components/sections/metrics/MetricsIconCards';
import TestimonialColumnMarqueeCards from '@/components/sections/testimonial/TestimonialColumnMarqueeCards';
+import FooterMinimal from '@/components/sections/footer/FooterMinimal';
import { Smile, Star, Utensils } from "lucide-react";
import SectionErrorBoundary from "@/components/ui/SectionErrorBoundary";
export default function HomePage() {
return (
<>
-
-
+
+
-
-
+ title="The Taste of Home in Every Bite"
+ description="Authentic, homely, and 100% vegetarian Indian food. Delivered fresh to your doorstep in Delhi."
+ primaryButton={{ text: "Book Your Meal", href: "#contact" }}
+ secondaryButton={{ text: "View Menu", href: "#menu" }}
+ imageSrc="https://storage.googleapis.com/webild/users/user_3FAQf6E4l5nNTaymEKz65k3ksFU/uploaded-1781515991386-hgz7vyys.jpg"
+ />
+
+
-
-
+
+ tag="Our Story"
+ title="Bringing Ma ke hath ka khana to your table"
+ description="Apna Khana was born out of a desire to provide hygienic, wholesome, and affordable home-cooked food. We use pure ingredients to create recipes that feel exactly like home, perfect for your office parties, daily tiffins, or special family gatherings."
+ imageSrc="https://storage.googleapis.com/webild/users/user_3FAQf6E4l5nNTaymEKz65k3ksFU/uploaded-1781515991387-v0jcvplq.jpg"
+ />
+
+
-
-
-
+
+
-
-
+ tag="Loved by Diners"
+ title="What our customers are saying"
+ description="Rated 4.8/5 across Google, Zomato, and Magicpin."
+ testimonials={[
+ { name: "Bhupendra Singh", role: "Regular Customer", quote: "Apna Khana truly offers food that tastes just like homemade meals. Excellent hygiene and quality.", imageSrc: "http://img.b2bpic.net/free-photo/front-view-smiley-man-with-headphones_23-2149915902.jpg" },
+ { name: "Abhishek Juneja", role: "Foodie", quote: "Delicious home-cooked food! The taste was spot on and ingredients feel fresh.", imageSrc: "http://img.b2bpic.net/free-photo/close-up-people-celebrating-engagement_23-2149212184.jpg" },
+ { name: "Kiran Bora", role: "Regular Customer", quote: "True to its name. Dal makhani is awesome!", imageSrc: "http://img.b2bpic.net/free-photo/handsome-young-man-looking-aside-empty-space-showing-thumbs-up-standing-blue-background_1258-162778.jpg" },
+ { name: "Saket Mishra", role: "Diner", quote: "The taste of gajar ka halwa was superb. Ambience is clean and pleasant.", imageSrc: "http://img.b2bpic.net/free-photo/top-view-arrangement-with-smiley-emoji-card_23-2148860296.jpg" },
+ { name: "Snehal More", role: "Foodie", quote: "Apna Khana feels like home! Generous portions and pocket friendly.", imageSrc: "http://img.b2bpic.net/free-photo/joyful-amazed-person-gives-thumbs-up-okay-symbol-camera_482257-122359.jpg" }
+ ]}
+ />
+
+
-
-
+
+
-
-
+ tag="Why Choose Us"
+ title="Quality in Numbers"
+ description="Consistent quality for over a year of service."
+ metrics={[
+ { icon: "Star", title: "Google Rating", value: "4.8+" },
+ { icon: "Utensils", title: "Meals Served", value: "10k+" },
+ { icon: "Smile", title: "Happy Customers", value: "500+" }
+ ]}
+ />
+
+
-
-
+
+
-
-
+ tag="Questions?"
+ title="Helpful Information"
+ description="Common answers to your questions about our services."
+ categories={[
+ { name: "General", items: [{ question: "Do you deliver?", answer: "Yes, we offer free delivery within 7km on orders above ₹500." }, { question: "Is the food vegetarian?", answer: "Yes, we are a 100% vegetarian establishment." }] }
+ ]}
+ />
+
+
-
+
+
>
);
}