diff --git a/src/app/page.tsx b/src/app/page.tsx index a2aaee5..da1d788 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -136,7 +136,7 @@ export default function LandingPage() { useInvertedBackground={false} background={{ variant: "rotated-rays-animated" }} text="Reserve your table and join us for an exquisite evening." - buttons={[{ text: "Book Now", href: "tel:+33561413964" }]} + buttons={[{ text: "Book Now", onClick: () => { window.location.href = 'tel:+33561413964'; } }]} /> @@ -147,7 +147,7 @@ export default function LandingPage() { title: "Location", items: [{ label: "28 Pl. de l'Église, 31270 Cugnaux, France", href: "#" }], }, { - title: "Contact", items: [{ label: "+33 5 61 41 39 64", href: "tel:+33561413964" }], + title: "Contact", items: [{ label: "+33 5 61 41 39 64", onClick: () => { window.location.href = 'tel:+33561413964'; } }], }, { title: "Legal", items: [{ label: "Privacy Policy", href: "#" }, { label: "Terms of Service", href: "#" }],