From 0fa55e3f2a1ee96f602b6de80b0f36724278a44c Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 7 Mar 2026 15:59:15 +0000 Subject: [PATCH] Add src/app/pricing/page.tsx --- src/app/pricing/page.tsx | 112 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 112 insertions(+) create mode 100644 src/app/pricing/page.tsx 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 ( + + + +
+ +
+ +
+ +
+ +
+ +
+ + +
+ ); +}