diff --git a/src/app/pricing/page.tsx b/src/app/pricing/page.tsx new file mode 100644 index 0000000..1259f18 --- /dev/null +++ b/src/app/pricing/page.tsx @@ -0,0 +1,108 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import ReactLenis from "lenis/react"; +import ContactCenter from '@/components/sections/contact/ContactCenter'; +import FooterCard from '@/components/sections/footer/FooterCard'; +import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline'; +import PricingCardFive from '@/components/sections/pricing/PricingCardFive'; +import { Car, Crown, Facebook, Instagram, Mail, Sofa, SprayCan, Twitter } from "lucide-react"; + +export default function PricingPage() { + const navItems = [ + { name: "Home", id: "/" }, + { name: "About", id: "/#about" }, + { name: "Services", id: "/#features" }, + { name: "Packages", id: "/#products" }, + { name: "Pricing", id: "/pricing" }, + { name: "Testimonials", id: "/#testimonials" }, + { name: "FAQ", id: "/#faq" }, + { name: "Contact", id: "/#contact" }, + ]; + + return ( + + + + +
+ +
+ +
+ +
+ + +
+
+ ); +}