|
|
|
|
@@ -11,6 +11,7 @@ import MetricCardTwo from '@/components/sections/metrics/MetricCardTwo';
|
|
|
|
|
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
|
|
|
|
|
import ProductCardFour from '@/components/sections/product/ProductCardFour';
|
|
|
|
|
import TestimonialCardTen from '@/components/sections/testimonial/TestimonialCardTen';
|
|
|
|
|
import { Phone, ShoppingCart } from 'lucide-react';
|
|
|
|
|
|
|
|
|
|
export default function LandingPage() {
|
|
|
|
|
return (
|
|
|
|
|
@@ -90,7 +91,10 @@ export default function LandingPage() {
|
|
|
|
|
<TestimonialCardTen
|
|
|
|
|
textboxLayout="split"
|
|
|
|
|
useInvertedBackground={false}
|
|
|
|
|
testimonials={[]}
|
|
|
|
|
testimonials={[
|
|
|
|
|
{ id: "1", title: "Excellent", quote: "Les meilleurs tacos de la ville !", name: "Thomas D.", role: "Habitué" },
|
|
|
|
|
{ id: "2", title: "Rapide et chaud", quote: "Super accueil et service irréprochable.", name: "Sarah L.", role: "Cliente régulière" }
|
|
|
|
|
]}
|
|
|
|
|
title="Avis de nos clients"
|
|
|
|
|
description="Ce que pensent nos habitués de Lons-le-Saunier."
|
|
|
|
|
/>
|
|
|
|
|
@@ -100,7 +104,10 @@ export default function LandingPage() {
|
|
|
|
|
<FaqBase
|
|
|
|
|
textboxLayout="split"
|
|
|
|
|
useInvertedBackground={true}
|
|
|
|
|
faqs={[]}
|
|
|
|
|
faqs={[
|
|
|
|
|
{ id: "1", title: "Horaires", content: "Ouvert du mardi au dimanche, de 11h30 à 14h00 et de 18h30 à 22h30." },
|
|
|
|
|
{ id: "2", title: "Livraison", content: "Service de livraison disponible dans un rayon de 5km." }
|
|
|
|
|
]}
|
|
|
|
|
title="Infos Pratiques"
|
|
|
|
|
description="Tout savoir sur Le Bek Food."
|
|
|
|
|
faqsAnimation="slide-up"
|
|
|
|
|
@@ -113,7 +120,10 @@ export default function LandingPage() {
|
|
|
|
|
textboxLayout="split"
|
|
|
|
|
gridVariant="uniform-all-items-equal"
|
|
|
|
|
useInvertedBackground={false}
|
|
|
|
|
metrics={[]}
|
|
|
|
|
metrics={[
|
|
|
|
|
{ id: "1", value: "500+", description: "Tacos servis chaque semaine" },
|
|
|
|
|
{ id: "2", value: "4.8/5", description: "Note moyenne sur Google" }
|
|
|
|
|
]}
|
|
|
|
|
title="Notre succès en chiffres"
|
|
|
|
|
description="La confiance de nos clients en un clin d'œil."
|
|
|
|
|
/>
|
|
|
|
|
@@ -130,6 +140,14 @@ export default function LandingPage() {
|
|
|
|
|
mediaAnimation="slide-up"
|
|
|
|
|
onSubmit={(email) => alert(`Inscription reçue : ${email}`)}
|
|
|
|
|
/>
|
|
|
|
|
<div className="fixed bottom-6 right-6 z-50 flex flex-col gap-4">
|
|
|
|
|
<button onClick={() => window.open('https://wa.me/33615014391', '_blank')} className="bg-green-500 p-4 rounded-full shadow-lg text-white">
|
|
|
|
|
<Phone />
|
|
|
|
|
</button>
|
|
|
|
|
<button onClick={() => document.getElementById('contact')?.scrollIntoView({ behavior: 'smooth' })} className="bg-orange-500 p-4 rounded-full shadow-lg text-white">
|
|
|
|
|
<ShoppingCart />
|
|
|
|
|
</button>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<div id="footer" data-section="footer">
|
|
|
|
|
|