6 Commits

Author SHA1 Message Date
2a8000a224 Update src/app/page.tsx 2026-05-02 09:12:36 +00:00
333517a92e Merge version_2 into main
Merge version_2 into main
2026-05-02 09:10:31 +00:00
496bbb5fef Update src/app/page.tsx 2026-05-02 09:10:28 +00:00
6c08a59cc7 Merge version_1 into main
Merge version_1 into main
2026-05-02 09:08:42 +00:00
78ab90fc5c Merge version_1 into main
Merge version_1 into main
2026-05-02 09:08:18 +00:00
785ee7a640 Merge version_1 into main
Merge version_1 into main
2026-05-02 09:07:53 +00:00

View File

@@ -10,7 +10,6 @@ import HeroBillboardScroll from '@/components/sections/hero/HeroBillboardScroll'
import MediaAbout from '@/components/sections/about/MediaAbout';
import MetricCardFourteen from '@/components/sections/metrics/MetricCardFourteen';
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
import ProductCardOne from '@/components/sections/product/ProductCardOne';
import TestimonialCardTwo from '@/components/sections/testimonial/TestimonialCardTwo';
export default function LandingPage() {
@@ -35,12 +34,10 @@ export default function LandingPage() {
name: "Accueil", id: "hero"},
{
name: "À propos", id: "about"},
{
name: "Menu", id: "products"},
{
name: "Contact", id: "contact"},
]}
brandName="L'Essence"
brandName="Le Claire du Verger"
button={{ text: "Réserver", href: "#contact" }}
/>
</div>
@@ -49,13 +46,11 @@ export default function LandingPage() {
<HeroBillboardScroll
background={{
variant: "radial-gradient"}}
title="Une expérience culinaire unique."
description="Découvrez des saveurs raffinées dans un cadre contemporain et chaleureux."
title="Le Claire du Verger - Restaurant"
description="Une expérience culinaire unique. Ouvert du mardi au dimanche de 12h à 14h et de 19h à 22h."
buttons={[
{
text: "Réserver", href: "#contact"},
{
text: "Voir le menu", href: "#products"},
]}
imageSrc="http://img.b2bpic.net/free-photo/medium-shot-woman-sitting-table_23-2148773522.jpg?_wi=1"
/>
@@ -94,31 +89,6 @@ export default function LandingPage() {
/>
</div>
<div id="products" data-section="products">
<ProductCardOne
animationType="slide-up"
textboxLayout="split"
gridVariant="two-columns-alternating-heights"
useInvertedBackground={true}
products={[
{
id: "p1", name: "Entrée Signature", price: "12€", imageSrc: "http://img.b2bpic.net/free-photo/chicken-salad-with-fresh-vegetables_140725-6565.jpg"},
{
id: "p2", name: "Salade Fraîche", price: "14€", imageSrc: "http://img.b2bpic.net/free-photo/healthy-food-composition-with-kitchen-tools_23-2147992837.jpg"},
{
id: "p3", name: "Dessert Gourmand", price: "9€", imageSrc: "http://img.b2bpic.net/free-photo/top-view-yummy-creamy-cake-with-raisins-cup-tea-light-dark-background_140725-80172.jpg"},
{
id: "p4", name: "Plat de Viande", price: "22€", imageSrc: "http://img.b2bpic.net/free-photo/meringue-roll-concept-tasty-delicious-food_185193-165466.jpg"},
{
id: "p5", name: "Pâtes Maison", price: "18€", imageSrc: "http://img.b2bpic.net/free-photo/close-up-cheesy-healthy-tagliatelle-pasta-container-with-slices-cherry-tomato_23-2148076243.jpg"},
{
id: "p6", name: "Pain Artisanal", price: "5€", imageSrc: "http://img.b2bpic.net/free-photo/top-view-from-afar-strawberries-macaroons-plate-chocolate-covered-strawberries-french-macaroons-bowls-sweets-around-it-cutting-board-table_140725-111984.jpg"},
]}
title="Notre Menu Signature"
description="Une sélection de mets raffinés préparés avec amour."
/>
</div>
<div id="testimonials" data-section="testimonials">
<TestimonialCardTwo
animationType="slide-up"
@@ -163,15 +133,13 @@ export default function LandingPage() {
useInvertedBackground={false}
faqs={[
{
id: "q1", title: "Faut-il réserver ?", content: "Oui, il est fortement conseillé."},
id: "q1", title: "Faut-il réserver ?", content: "Oui, il est fortement conseillé via notre formulaire de contact."},
{
id: "q2", title: "Quels sont les horaires ?", content: "Ouvert de 12h à 22h."},
{
id: "q3", title: "Option végétarienne ?", content: "Oui, nous avons une carte dédiée."},
id: "q2", title: "Horaires d'ouverture", content: "Mardi au Dimanche: 12h-14h et 19h-22h. Fermé le lundi."},
]}
imageSrc="http://img.b2bpic.net/free-photo/portrait-handsome-successful-bearded-south-asian-young-indian-freelancer-blue-jeans-shirt-sitting-night-club-against-bar-counter-with-cocktail-having-rest_627829-5102.jpg"
title="FAQ"
description="Quelques réponses aux questions fréquentes."
title="Informations Pratiques"
description="Toutes les informations pour bien préparer votre visite chez Le Claire du Verger."
faqsAnimation="slide-up"
/>
</div>
@@ -180,7 +148,7 @@ export default function LandingPage() {
<ContactSplitForm
useInvertedBackground={true}
title="Réservation"
description="Réservez votre table dès maintenant."
description="Réservez votre table dès maintenant pour profiter de notre cuisine."
inputs={[
{
name: "nom", type: "text", placeholder: "Nom", required: true,
@@ -195,7 +163,7 @@ export default function LandingPage() {
<div id="footer" data-section="footer">
<FooterLogoReveal
logoText="L'Essence"
logoText="Le Claire du Verger"
leftLink={{
text: "Mentions légales", href: "#"}}
rightLink={{
@@ -205,4 +173,4 @@ export default function LandingPage() {
</ReactLenis>
</ThemeProvider>
);
}
}