5 Commits

Author SHA1 Message Date
a59db30ce9 Merge version_3 into main
Merge version_3 into main
2026-03-11 12:30:18 +00:00
fb299755b9 Update src/app/page.tsx 2026-03-11 12:30:14 +00:00
6c2aef4498 Merge version_3 into main
Merge version_3 into main
2026-03-11 12:29:27 +00:00
6649e103c1 Update src/app/page.tsx 2026-03-11 12:29:23 +00:00
2aed398672 Merge version_2 into main
Merge version_2 into main
2026-03-11 12:26:15 +00:00

View File

@@ -27,10 +27,10 @@ export default function LandingPage() {
<NavbarStyleFullscreen
navItems={[
{ name: 'Accueil', id: 'hero' },
{ name: 'Menu', id: 'menu' },
{ name: 'À propos', id: 'about' },
{ name: 'Menu', id: 'specialties' },
{ name: 'À propos', id: 'why-choose' },
{ name: 'Avis', id: 'testimonials' },
{ name: 'Contact', id: 'contact' }
{ name: 'Contact', id: 'cta' }
]}
brandName="Le Croquant"
bottomLeftText="Kouba, Alger"
@@ -46,8 +46,7 @@ export default function LandingPage() {
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AnW6qHutriGtxa74ODlgSKTcZi/uploaded-1773230602480-uaqa5k3g.png"
imageAlt="Crispy gourmet sandwich with fresh ingredients"
buttons={[
{ text: 'Découvrir le menu', href: '#menu' },
{ text: 'Commander maintenant', href: '#contact' }
{ text: 'Découvrir le menu', href: '#specialties' }
]}
mediaAnimation="slide-up"
/>
@@ -194,8 +193,7 @@ export default function LandingPage() {
description="Venez découvrir l'expérience Le Croquant. Qualité, saveur et générosité à chaque bouchée."
background={{ variant: 'plain' }}
buttons={[
{ text: 'Commander maintenant', href: '#contact' },
{ text: 'Voir le menu complet', href: '#menu' }
{ text: 'Voir le menu complet', href: '#specialties' }
]}
mediaAnimation="none"
/>
@@ -208,8 +206,8 @@ export default function LandingPage() {
title: 'Naviguer',
items: [
{ label: 'Accueil', href: '#hero' },
{ label: 'Menu', href: '#menu' },
{ label: 'À propos', href: '#about' },
{ label: 'Menu', href: '#specialties' },
{ label: 'À propos', href: '#why-choose' },
{ label: 'Avis', href: '#testimonials' }
]
},
@@ -235,4 +233,4 @@ export default function LandingPage() {
</div>
</ThemeProvider>
);
}
}