diff --git a/src/pages/HomePage.tsx b/src/pages/HomePage.tsx
index a616b8c..a03e9c1 100644
--- a/src/pages/HomePage.tsx
+++ b/src/pages/HomePage.tsx
@@ -5,200 +5,143 @@ import FeaturesImageBento from '@/components/sections/features/FeaturesImageBent
import HeroBrand from '@/components/sections/hero/HeroBrand';
import MetricsIconCards from '@/components/sections/metrics/MetricsIconCards';
import TestimonialMarqueeCards from '@/components/sections/testimonial/TestimonialMarqueeCards';
+import FooterMinimal from '@/components/sections/footer/FooterMinimal';
import { Globe, Star, Users } from "lucide-react";
import SectionErrorBoundary from "@/components/ui/SectionErrorBoundary";
export default function HomePage() {
return (
<>
-
-
+
+
-
-
+ brand="TakeOff Lounge"
+ description="An authentic aviation-inspired bistro experience in the heart of Constantine. Indulge in gourmet pizzas, pastas, and a warm atmosphere where your tastebuds take flight."
+ primaryButton={{
+ text: "View Menu", href: "#products"}}
+ secondaryButton={{
+ text: "Contact Us", href: "#contact"}}
+ imageSrc="http://img.b2bpic.net/free-photo/man-dancing-with-woman-restaurant_23-2148016782.jpg"
+ />
+
+
-
-
+
+ tag="Our Story"
+ title="Authentic Bistro Soul"
+ description="TakeOff Lounge is more than a restaurant; it's an experience. Born from a love of aviation and authentic culinary passion, we serve dishes that remind you of the finest moments in life."
+ primaryButton={{
+ text: "Book a Table", href: "#contact"}}
+ imageSrc="http://img.b2bpic.net/free-photo/decoration-bean-old-closeup-aroma_1203-5601.jpg"
+ />
+
+
-
-
+
+
-
-
+ tag="Our Signature Dishes"
+ title="Culinary Delights"
+ description="From our wood-fired Napolitaine to our famous Caesar salads, every bite is crafted to perfection."
+ items={[
+ {
+ title: "Pizza Burratina", description: "Fresh, creamy, and explosive flavors.", imageSrc: "http://img.b2bpic.net/free-photo/high-angle-hand-cutting-pizza-wooden-table_23-2148305681.jpg"},
+ {
+ title: "Caesar Salad", description: "The freshest greens in Constantine.", imageSrc: "http://img.b2bpic.net/free-photo/chef-putting-sliced-cheese-salad_23-2148516913.jpg"},
+ {
+ title: "3-Cheese Tacos", description: "A delightful blend of melted goodness.", imageSrc: "http://img.b2bpic.net/free-photo/high-angle-delicious-tacos-with-meat_23-2148750427.jpg"},
+ {
+ title: "Pizza Napolitaine", description: "Traditional dough, wood-fired.", imageSrc: "http://img.b2bpic.net/free-photo/flat-lay-delicious-pizza-with-parmesan-cheese_23-2148753753.jpg"},
+ {
+ title: "Signature Fries", description: "Golden, crispy, and addictive.", imageSrc: "http://img.b2bpic.net/free-photo/side-view-grilled-beef-meat-with-vegetables-served-with-french-fries-sauces-plate_140725-11965.jpg"},
+ {
+ title: "Il Pesto Pasta", description: "Reminiscent of childhood flavors.", imageSrc: "http://img.b2bpic.net/free-photo/top-view-delicious-italian-pasta-unusual-cooked-spiral-pasta-dark-background-pasta-dish-meal-cooking-dinner_140725-96507.jpg"},
+ {
+ title: "Gourmet Burgers", description: "Crafted with premium ingredients.", imageSrc: "http://img.b2bpic.net/free-photo/high-angle-man-holding-tray-with-burger-fries_23-2148678807.jpg"},
+ ]}
+ />
+
+
-
-
+
+
-
-
+ tag="Reviews"
+ title="What Our Passengers Say"
+ description="Hear from our satisfied guests about their experience at TakeOff Lounge."
+ testimonials={[
+ {
+ name: "Maha Djilah", role: "Foodie", quote: "Nourriture toujours au top, personnel accueillant et chaleureux!", imageSrc: "http://img.b2bpic.net/free-photo/couple-enjoying-food-restaurant_23-2149269179.jpg"},
+ {
+ name: "Fouad Ramzi", role: "Enthusiast", quote: "You will really TAKEOFF being there. Best Pesto sauce!", imageSrc: "http://img.b2bpic.net/free-photo/side-view-friends-eating-restaurant_23-2150491790.jpg"},
+ {
+ name: "Amira Atti", role: "Local", quote: "Un endroit chaleureux et authentique. Mon endroit préféré.", imageSrc: "http://img.b2bpic.net/free-photo/man-eating-laughing-restaurant_23-2148006702.jpg"},
+ {
+ name: "Karim S.", role: "Regular", quote: "Service rapide et une déco incroyable pour les fans d'aviation.", imageSrc: "http://img.b2bpic.net/free-photo/caucasian-couple-clinking-glasses-together-restaurant_53876-42638.jpg"},
+ {
+ name: "Sarah D.", role: "Traveler", quote: "Une tuerie ! Pizza Burratina, je reviens à chaque fois.", imageSrc: "http://img.b2bpic.net/free-photo/person-indian-origin-having-fun_23-2150285278.jpg"},
+ ]}
+ />
+
+
-
-
+
+
-
-
+ tag="Milestones"
+ title="By The Numbers"
+ metrics={[
+ {
+ icon: "Star", title: "Average Rating", value: "4.4"},
+ {
+ icon: "Users", title: "Happy Customers", value: "500+"},
+ {
+ icon: "Globe", title: "Takeoffs Daily", value: "100%"},
+ ]}
+ description="We measure our success by the satisfaction of our guests."
+ />
+
+
-
-
+
+
-
-
+ tag="Support"
+ title="Common Questions"
+ items={[
+ {
+ question: "Where are you located?", answer: "Rue Diabaoui Hadda, Constantine."},
+ {
+ question: "What are your hours?", answer: "We are open until 22:00."},
+ {
+ question: "Do you offer delivery?", answer: "Yes, delivery is available."},
+ ]}
+ description="Everything you need to know about dining at TakeOff Lounge."
+ />
+
+
-
+
+
>
);
}