diff --git a/src/app/page.tsx b/src/app/page.tsx index 0b7f7b4..ae0393e 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -12,6 +12,9 @@ import FooterMedia from '@/components/sections/footer/FooterMedia'; import { Award, Car, CheckCircle, Phone, Sparkles, Zap } from 'lucide-react'; export default function LandingPage() { + const phoneNumber = "0782205551"; + const phoneHref = `tel:${phoneNumber}`; + return ( @@ -46,7 +49,7 @@ export default function LandingPage() { tagIcon={Sparkles} tagAnimation="slide-up" buttons={[ - { text: "📞 Appeler maintenant", href: "tel:0782205551" }, + { text: "📞 Appeler maintenant", href: phoneHref }, { text: "🚗 Voir les véhicules", href: "#vehicles" } ]} buttonAnimation="slide-up" @@ -142,7 +145,7 @@ export default function LandingPage() { tagIcon={Zap} tagAnimation="slide-up" buttons={[ - { text: "📞 Commencer maintenant", href: "tel:0782205551" } + { text: "📞 Commencer maintenant", href: phoneHref } ]} buttonAnimation="slide-up" metrics={[ @@ -162,7 +165,7 @@ export default function LandingPage() { ); -} +} \ No newline at end of file