From 738f0c8b2f25a1a08f49f50c0c7aba962fc7fc44 Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 8 Apr 2026 23:29:27 +0000 Subject: [PATCH 1/2] Update src/app/contact/page.tsx --- src/app/contact/page.tsx | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/src/app/contact/page.tsx b/src/app/contact/page.tsx index 3f24cb3..7b7f1da 100644 --- a/src/app/contact/page.tsx +++ b/src/app/contact/page.tsx @@ -8,10 +8,11 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; export default function ContactPage() { const navItems = [ - { name: "À propos", href: "/#about" }, - { name: "Cours", href: "/#services" }, - { name: "Avis", href: "/#testimonials" }, - { name: "Contact", href: "/contact" }, + { name: "Accueil", id: "/" }, + { name: "À propos", id: "/#about" }, + { name: "Cours", id: "/#services" }, + { name: "Avis", id: "/#testimonials" }, + { name: "Contact", id: "/contact" }, ]; return ( @@ -43,6 +44,7 @@ export default function ContactPage() { { text: "Contacter sur WhatsApp", href: "https://wa.me/32400000000" }, ]} background={{ variant: "plain" }} + useInvertedBackground={false} /> Date: Wed, 8 Apr 2026 23:29:27 +0000 Subject: [PATCH 2/2] Update src/app/page.tsx --- src/app/page.tsx | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index c806411..6e9b173 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -6,18 +6,16 @@ import NavbarLayoutFloatingInline from "@/components/navbar/NavbarLayoutFloating import FeatureCardTwentyFive from "@/components/sections/feature/FeatureCardTwentyFive"; import TestimonialCardSixteen from "@/components/sections/testimonial/TestimonialCardSixteen"; import FaqSplitMedia from "@/components/sections/faq/FaqSplitMedia"; -import TeamCardTen from "@/components/sections/team/TeamCardTen"; -import ContactText from "@/components/sections/contact/ContactText"; import FooterLogoEmphasis from "@/components/sections/footer/FooterLogoEmphasis"; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; -import { CheckCircle, BookOpen, GraduationCap, Phone, Clock, Award, Users } from "lucide-react"; +import { CheckCircle, BookOpen, GraduationCap, Clock, Users, Award } from "lucide-react"; export default function PermitSchoolPage() { const navItems = [ { name: "À propos", id: "about" }, { name: "Cours", id: "services" }, { name: "Avis", id: "testimonials" }, - { name: "Contact", href: "/contact" }, + { name: "Contact", id: "contact" }, ]; return ( -- 2.49.1