5 Commits

Author SHA1 Message Date
a473ac7d1b Update src/app/styles/variables.css 2026-05-24 08:01:16 +00:00
55cbc3ad46 Update src/app/page.tsx 2026-05-24 08:01:16 +00:00
b8b5e0d701 Merge version_3 into main
Merge version_3 into main
2026-05-24 08:00:54 +00:00
f493e45827 Update src/app/page.tsx 2026-05-24 08:00:51 +00:00
38e43254ba Merge version_2 into main
Merge version_2 into main
2026-05-24 07:54:17 +00:00
2 changed files with 25 additions and 7 deletions

View File

@@ -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">

View File

@@ -12,12 +12,12 @@
--background: #0a0a0a;
--card: #1a1a1a;
--foreground: #ffffff;
--primary-cta: #e63946;
--foreground: #f5f5f5;
--primary-cta: #d4af37;
--primary-cta-text: #ffffff;
--secondary-cta: #ffffff;
--secondary-cta: #ff0000;
--secondary-cta-text: #000000;
--accent: #d4af37;
--accent: #ff0000;
--background-accent: #2a0a0a;
/* text sizing - set by ThemeProvider */