diff --git a/src/app/page.tsx b/src/app/page.tsx index 5394213..888c51e 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -44,6 +44,12 @@ const heroButtons = [ { text: "📊 Demander une estimation", href: "#contact" } ]; +const heroAvatars = [ + { src: "http://img.b2bpic.net/free-photo/blonde-business-woman-front-glass-building_23-2147704435.jpg?_wi=1", alt: "Client satisfait 1" }, + { src: "http://img.b2bpic.net/free-photo/modern-businesswoman_23-2148012909.jpg?_wi=1", alt: "Client satisfait 2" }, + { src: "http://img.b2bpic.net/free-photo/business-woman-with-glasses-front-glass-building_23-2147704438.jpg?_wi=1", alt: "Client satisfait 3" } +]; + const serviceFeatures = [ { id: "achat", title: "Achat immobilier", description: "Trouvez votre bien idéal. Recherche personnalisée, accompagnement complet jusqu'à la signature.", imageSrc: "http://img.b2bpic.net/free-photo/houses-with-yacht-old-port-nesebar-bulgaria_627829-7533.jpg?_wi=1", imageAlt: "Propriété moderne pour achat" @@ -161,6 +167,8 @@ export default function LandingPage() { rightCarouselItems={heroRightCarouselItems} buttons={heroButtons} buttonAnimation="opacity" + avatars={heroAvatars} + avatarText="⭐ 50+ clients satisfaits cette année" carouselPosition="right" ariaLabel="Hero section - Bienvenue à La Francilienne Immobilière" /> @@ -284,4 +292,4 @@ export default function LandingPage() { ); -} \ No newline at end of file +}