Merge version_3 into main

Merge version_3 into main
This commit was merged in pull request #4.
This commit is contained in:
2026-04-08 23:29:33 +00:00
2 changed files with 8 additions and 8 deletions

View File

@@ -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}
/>
</div>
<FooterLogoEmphasis

View File

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