From 4758848007e6ac1e9c38fad5f9771b0b77c377cc Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 22 Apr 2026 23:32:58 +0000 Subject: [PATCH 1/2] Update src/app/page.tsx --- src/app/page.tsx | 87 +++++++++++++++++++++++------------------------- 1 file changed, 41 insertions(+), 46 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 1293dec..e1ae0c8 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -10,7 +10,7 @@ import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatin import ProductCardThree from '@/components/sections/product/ProductCardThree'; import MetricSplitMediaAbout from '@/components/sections/about/MetricSplitMediaAbout'; import TestimonialCardTen from '@/components/sections/testimonial/TestimonialCardTen'; -import { Clock, Star, Users, Utensils } from "lucide-react"; +import { Utensils, CalendarDays, Tv, MapPin } from "lucide-react"; export default function LandingPage() { return ( @@ -32,7 +32,8 @@ export default function LandingPage() { navItems={[ { name: "Accueil", id: "hero" }, { name: "Menu", id: "menu" }, - { name: "À propos", id: "about" }, + { name: "Événements", id: "events" }, + { name: "Réservations", id: "reservation" }, { name: "Contact", id: "contact" }, ]} brandName="Ans Sports" @@ -54,71 +55,65 @@ export default function LandingPage() { /> -
- -
- -
- +
-
- +
@@ -126,10 +121,10 @@ export default function LandingPage() { ); -} \ No newline at end of file +} -- 2.49.1 From 37d23da51ce5dd64447d23097095453d813c2169 Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 22 Apr 2026 23:32:59 +0000 Subject: [PATCH 2/2] Update src/app/styles/variables.css --- src/app/styles/variables.css | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/src/app/styles/variables.css b/src/app/styles/variables.css index b7afc67..1b64995 100644 --- a/src/app/styles/variables.css +++ b/src/app/styles/variables.css @@ -10,15 +10,15 @@ --accent: #ffffff; --background-accent: #ffffff; */ - --background: #f5f4ef; - --card: #dad6cd; - --foreground: #2a2928; - --primary-cta: #2a2928; + --background: #0a0a0a; + --card: #1a1a1a; + --foreground: #ffffff; + --primary-cta: #e34400; --primary-cta-text: #f5f4ef; - --secondary-cta: #ecebea; + --secondary-cta: #010101; --secondary-cta-text: #2a2928; - --accent: #ffffff; - --background-accent: #c6b180; + --accent: #ff7b05; + --background-accent: #e34400; /* text sizing - set by ThemeProvider */ /* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem); -- 2.49.1