diff --git a/src/app/pricing/page.tsx b/src/app/pricing/page.tsx new file mode 100644 index 0000000..1eef24c --- /dev/null +++ b/src/app/pricing/page.tsx @@ -0,0 +1,107 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import ReactLenis from "lenis/react"; +import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple'; +import FooterMedia from '@/components/sections/footer/FooterMedia'; +import PricingCardThree from '@/components/sections/pricing/PricingCardThree'; +import { Star } from "lucide-react"; + +export default function PricingPage() { + return ( + + + + +
+ +
+ + +
+
+ ); +}