Merge version_2 into main

Merge version_2 into main
This commit was merged in pull request #4.
This commit is contained in:
2026-05-17 08:04:25 +00:00

View File

@@ -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'; } }]}
/>
</div>
@@ -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: "#" }],