diff --git a/src/app/pricing/page.tsx b/src/app/pricing/page.tsx new file mode 100644 index 0000000..73240bb --- /dev/null +++ b/src/app/pricing/page.tsx @@ -0,0 +1,98 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay'; +import PricingCardTwo from '@/components/sections/pricing/PricingCardTwo'; +import FooterLogoReveal from '@/components/sections/footer/FooterLogoReveal'; +import { Sparkles, Leaf, Heart } from 'lucide-react'; + +export default function PricingPage() { + return ( + +
+ + +
+ +
+ + +
+
+ ); +}