diff --git a/src/app/pricing/page.tsx b/src/app/pricing/page.tsx new file mode 100644 index 0000000..385788c --- /dev/null +++ b/src/app/pricing/page.tsx @@ -0,0 +1,112 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple'; +import HeroLogoBillboard from '@/components/sections/hero/HeroLogoBillboard'; +import PricingCardNine from '@/components/sections/pricing/PricingCardNine'; +import ContactCenter from '@/components/sections/contact/ContactCenter'; +import FooterCard from '@/components/sections/footer/FooterCard'; + +export default function PricingPage() { + 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 ( + + + +
+ +
+ +
+ +
+ +
+ +
+ + +
+ ); +}