diff --git a/src/pages/HomePage.tsx b/src/pages/HomePage.tsx
index bff4fd5..6408a9d 100644
--- a/src/pages/HomePage.tsx
+++ b/src/pages/HomePage.tsx
@@ -5,221 +5,119 @@ import FeaturesBento from '@/components/sections/features/FeaturesBento';
import HeroBillboardBrand from '@/components/sections/hero/HeroBillboardBrand';
import MetricsSimpleCards from '@/components/sections/metrics/MetricsSimpleCards';
import TestimonialMarqueeOverlayCards from '@/components/sections/testimonial/TestimonialMarqueeOverlayCards';
-import { Star } from "lucide-react";
import SectionErrorBoundary from "@/components/ui/SectionErrorBoundary";
export default function HomePage() {
return (
<>
-
-
+
+
-
-
+ brand="THE MAINE"
+ description="Experience the quintessence of fine dining in Business Bay. A brasserie built for those who appreciate the finer things."
+ primaryButton={{ text: "Reserve Now", href: "#contact" }}
+ secondaryButton={{ text: "View Menu", href: "#about" }}
+ imageSrc="http://img.b2bpic.net/free-photo/wine-glass-table-setting_74190-4678.jpg"
+ />
+
+
-
-
+
+ title="A New Landmark in Dubai Dining"
+ primaryButton={{ text: "Our Story", href: "#" }}
+ />
+
+
-
-
+
+
-
-
+ tag="Highlights"
+ title="Culinary Excellence"
+ description="Curated dishes crafted with precision and passion, inspired by classic brasseries."
+ features={[
+ {
+ title: "Fresh Ingredients", description: "Locally sourced, highest quality produce served at peak freshness.", bentoComponent: "media-stack", mediaItems: [
+ { imageSrc: "http://img.b2bpic.net/free-photo/salad-plate-with-service-bell_23-2148040239.jpg" },
+ { imageSrc: "http://img.b2bpic.net/free-photo/close-up-chef-decorating-dish-after-cooking_329181-16141.jpg" },
+ { imageSrc: "http://img.b2bpic.net/free-photo/wedding-hall-with-white-wooden-furniture-interior_114579-2232.jpg" }
+ ]
+ },
+ {
+ title: "Exquisite Wine List", description: "A curated cellar featuring vintages from around the world.", bentoComponent: "animated-bar-chart"
+ },
+ {
+ title: "Atmosphere", description: "Luxury meets comfort in our signature Business Bay interior.", bentoComponent: "icon-text-marquee", centerIcon: "Star", marqueeTexts: ["Elegant", "Sophisticated", "Inviting", "Exclusive"]
+ }
+ ]}
+ />
+
+
-
-
+
+
-
-
+ tag="Our Stats"
+ title="By The Numbers"
+ description="Creating memories since day one."
+ metrics={[
+ { value: "500+", description: "Dishes Served Daily" },
+ { value: "150+", description: "Wine Vintages" },
+ { value: "5*", description: "Rating Average" },
+ { value: "24/7", description: "Impeccable Service" },
+ { value: "100%", description: "Customer Satisfaction" }
+ ]}
+ />
+
+
-
-
+
+
-
-
+ tag="Guest Reviews"
+ title="Voices of The MAINE"
+ description="Discover why our patrons choose us as their favorite culinary escape in Dubai."
+ testimonials={[
+ { name: "James R.", role: "Food Critic", company: "Dubai Dining", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/beautiful-young-woman-enjoying-working-day-is-having-coffee-break-outdoor-cafe-cheerful-lady-with-coffee-hand_291650-1354.jpg" },
+ { name: "Elena S.", role: "Entrepreneur", company: "Global Corp", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/friends-eating-conversating-restaurant_23-2148006711.jpg" },
+ { name: "Mark V.", role: "Business Owner", company: "City Group", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/people-having-dinner-luxurious-restaurants_23-2151081914.jpg" },
+ { name: "Sarah L.", role: "Designer", company: "Studio X", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/happy-couple-talking-each-other-lunch-time-restaurant-focus-is-woman-eating-sandwich_637285-1962.jpg" },
+ { name: "David M.", role: "Director", company: "Consulting", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/happy-close-up-portrait-beautiful-black-skinned-woman-wearing-blouse-flower-headband-enjoying-dinner-while-eating-restaurant_613910-5625.jpg" }
+ ]}
+ />
+
+
-
-
+
+
-
-
+ tag="FAQ"
+ title="Questions Answered"
+ description="Find everything you need to know about planning your visit."
+ items={[
+ { question: "Do I need a reservation?", answer: "Highly recommended for all evening bookings." },
+ { question: "What is the dress code?", answer: "Smart elegant attire is encouraged." },
+ { question: "Do you offer private dining?", answer: "Yes, we have dedicated rooms for private events." },
+ { question: "Is there valet parking?", answer: "Valet services are available for all our guests." },
+ { question: "Are children welcome?", answer: "Families are welcome, we request quiet supervision." }
+ ]}
+ imageSrc="http://img.b2bpic.net/free-photo/grey-painted-fancy-restaurant-with-empty-dinner-table_140725-8729.jpg"
+ />
+
+
-
>
);
}