diff --git a/src/pages/HomePage.tsx b/src/pages/HomePage.tsx
index 3de261e..adc32da 100644
--- a/src/pages/HomePage.tsx
+++ b/src/pages/HomePage.tsx
@@ -5,123 +5,120 @@ import FeaturesImageBento from '@/components/sections/features/FeaturesImageBent
import HeroBrand from '@/components/sections/hero/HeroBrand';
import MetricsFeatureCards from '@/components/sections/metrics/MetricsFeatureCards';
import TestimonialMarqueeCards from '@/components/sections/testimonial/TestimonialMarqueeCards';
-import { Zap } from "lucide-react";
import SectionErrorBoundary from "@/components/ui/SectionErrorBoundary";
export default function HomePage() {
return (
<>
-
-
+
+
-
-
+ brand="Tchoco Tangier"
+ description="L'indulgence rencontre l'audace au cœur de Tanger. Burgers, tacos et pizzas dans une atmosphère vibrante et sensuelle."
+ primaryButton={{ text: "Commander", href: "#menu" }}
+ secondaryButton={{ text: "Réserver", href: "#contact" }}
+ imageSrc="http://img.b2bpic.net/free-photo/slice-chocolate-cake-with-fruits-cup-tea-top-view_114579-17549.jpg"
+ />
+
+
-
-
+
+ tag="L'Esprit Tchoco"
+ title="Plus qu'un Snack"
+ description="Né d'une envie de casser les codes. Une atmosphère accueillante, une propreté irréprochable et cette petite touche gourmande qui nous rend uniques."
+ imageSrc="http://img.b2bpic.net/free-photo/front-view-man-eating-seaweed-snacks_23-2150872519.jpg"
+ />
+
+
-
-
-
+
+
-
-
+ tag="Pourquoi Tchoco ?"
+ title="L'Excellence au quotidien"
+ description="Ce qui nous distingue dans la scène urbaine de Tanger."
+ features={[
+ {
+ title: "Qualité Inégalée", description: "Ingrédients frais sélectionnés rigoureusement.", bentoComponent: "media-stack", mediaItems: [
+ { imageSrc: "http://img.b2bpic.net/free-photo/delicious-set-tasty-burgers-ready-be-served_23-2148290630.jpg" },
+ { imageSrc: "http://img.b2bpic.net/free-photo/healthy-menu-recipe-food-diet_53876-122834.jpg" },
+ { imageSrc: "http://img.b2bpic.net/free-photo/young-people-vaping-from-hookah-bar_23-2149194192.jpg" }
+ ]
+ },
+ {
+ title: "Prix Honnêtes", description: "Le meilleur rapport qualité-prix en ville.", bentoComponent: "animated-bar-chart"
+ },
+ {
+ title: "Ambiance Vibrante", description: "Une énergie jeune et accueillante.", bentoComponent: "orbiting-icons", centerIcon: "Zap", orbitIcons: ["Music", "Coffee", "Heart"]
+ }
+ ]}
+ />
+
+
-
-
+
+
-
-
+ tag="Notre Impact"
+ title="Chiffres Gourmands"
+ description="La satisfaction de nos convives Tangeris."
+ metrics={[
+ { value: "10k+", title: "Repas servis", features: ["Ingrédients frais", "Portions généreuses"] },
+ { value: "4.8/5", title: "Note client", features: ["Service rapide", "Accueil pro"] },
+ { value: "95%", title: "Satisfaction", features: ["Prix compétitifs", "Ambiance vibrante"] }
+ ]}
+ />
+
+
-
-
+
+
-
-
+ tag="Ce qu'ils disent"
+ title="L'Avis des Convives"
+ description="Le retour de notre communauté fidèle."
+ testimonials={[
+ { name: "Yassine A.", role: "Client Fidèle", quote: "Quantité largement suffisante et rassasiante. Une pépite.", imageSrc: "http://img.b2bpic.net/free-photo/restaurant-chilling-out-classy-lifestyle-reserved-concept_53876-15896.jpg" },
+ { name: "Sofia M.", role: "Étudiante", quote: "L'atmosphère est vibrante et le staff est toujours accueillant.", imageSrc: "http://img.b2bpic.net/free-photo/young-woman-cafe-dines-traditional-shakshuka-ayran_169016-16760.jpg" },
+ { name: "Karim R.", role: "Local", quote: "Prix honnêtes et propreté irréprochable. Je recommande vivement.", imageSrc: "http://img.b2bpic.net/free-photo/women-eating-traditional-italian-pizza-together_52683-110887.jpg" },
+ { name: "Lina B.", role: "Gourmande", quote: "Délicieux, surtout les pizzas. Une adresse incontournable.", imageSrc: "http://img.b2bpic.net/free-photo/low-angle-friends-having-good-time_23-2148395331.jpg" },
+ { name: "Omar D.", role: "Habitué", quote: "Staff très pro et plats pleins de saveurs. Super ambiance.", imageSrc: "http://img.b2bpic.net/free-photo/woman-with-salad-phone_1303-9020.jpg" }
+ ]}
+ />
+
+
-
>
);
}