Merge version_2 into main

Merge version_2 into main
This commit was merged in pull request #2.
This commit is contained in:
2026-05-08 12:22:28 +00:00

View File

@@ -12,7 +12,7 @@ import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloating
import ProductCardOne from '@/components/sections/product/ProductCardOne';
import SocialProofOne from '@/components/sections/socialProof/SocialProofOne';
import TestimonialCardFifteen from '@/components/sections/testimonial/TestimonialCardFifteen';
import { Award, Clock, Heart, Leaf, Star, Utensils } from "lucide-react";
import { Award, Clock, Heart, Leaf, Star, Utensils, Phone, MapPin } from "lucide-react";
export default function LandingPage() {
return (
@@ -38,7 +38,7 @@ export default function LandingPage() {
{ name: "Contact", id: "contact" },
]}
brandName="Ti Milo"
button={{ text: "Commander", href: "#menu" }}
button={{ text: "Appeler", href: "tel:0981598314" }}
/>
</div>
@@ -47,7 +47,10 @@ export default function LandingPage() {
background={{ variant: "gradient-bars" }}
title="Ti Milo - L'Authentique Saveur des Antilles"
description="Découvrez le vrai goût de la cuisine antillaise au cœur de Guyancourt. Bokits croustillants, agoulous généreux et poulet boucané vous attendent."
buttons={[{ text: "Commander", href: "#menu" }]}
buttons={[
{ text: "Commander", href: "#menu" },
{ text: "Itinéraire", href: "https://maps.app.goo.gl/your-map-link" }
]}
imageSrc="http://img.b2bpic.net/free-photo/tasty-sandwich-along-with-green-bell-peppers-oil-lemon-blue_140725-30103.jpg"
/>
</div>
@@ -146,8 +149,11 @@ export default function LandingPage() {
<ContactText
useInvertedBackground={true}
background={{ variant: "sparkles-gradient" }}
text="Prêt à commander ? Contactez-nous au 09 81 59 83 14 ou rendez-nous visite directement au restaurant !"
buttons={[{ text: "Appeler", href: "tel:0981598314" }]}
text="Prêt à commander ? Contactez-nous ou retrouvez notre localisation via Google Maps !"
buttons={[
{ text: "Appeler", href: "tel:0981598314" },
{ text: "Itinéraire", href: "https://maps.app.goo.gl/your-map-link" }
]}
/>
</div>
@@ -163,4 +169,4 @@ export default function LandingPage() {
</ReactLenis>
</ThemeProvider>
);
}
}