diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx new file mode 100644 index 0000000..cd700a2 --- /dev/null +++ b/src/app/about/page.tsx @@ -0,0 +1,147 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple'; +import HeroLogoBillboard from '@/components/sections/hero/HeroLogoBillboard'; +import TextAbout from '@/components/sections/about/TextAbout'; +import TeamCardSix from '@/components/sections/team/TeamCardSix'; +import FeatureCardTwentySeven from '@/components/sections/feature/FeatureCardTwentySeven'; +import ContactCenter from '@/components/sections/contact/ContactCenter'; +import FooterCard from '@/components/sections/footer/FooterCard'; +import { Users } from 'lucide-react'; + +export default function AboutPage() { + const navItems = [ + { name: "Services", id: "services" }, + { name: "Processus", id: "how-it-works" }, + { name: "Avantages", id: "why-us" }, + { name: "Portfolio", id: "portfolio" }, + { name: "Tarifs", id: "/pricing" }, + { name: "À propos", id: "/about" }, + { name: "Contact", id: "contact" } + ]; + + return ( + + + +
+ +
+ +
+ +
+ +
+ +
+ +
+ +
+ +
+ +
+ + +
+ ); +}