diff --git a/src/app/subscription-plans/page.tsx b/src/app/subscription-plans/page.tsx new file mode 100644 index 0000000..8da6ff4 --- /dev/null +++ b/src/app/subscription-plans/page.tsx @@ -0,0 +1,71 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import ReactLenis from "lenis/react"; +import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay'; +import PricingCardOne from '@/components/sections/pricing/PricingCardOne'; +import FooterBase from '@/components/sections/footer/FooterBase'; +import { Gem, Sparkles, Star } from "lucide-react"; + +export default function SubscriptionPlansPage() { + return ( + + + + +
+ +
+ + +
+
+ ); +}