diff --git a/src/app/pricing/page.tsx b/src/app/pricing/page.tsx new file mode 100644 index 0000000..8f4afe4 --- /dev/null +++ b/src/app/pricing/page.tsx @@ -0,0 +1,101 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import NavbarLayoutFloatingInline from "@/components/navbar/NavbarLayoutFloatingInline"; +import PricingCardOne from "@/components/sections/pricing/PricingCardOne"; +import FooterSimple from "@/components/sections/footer/FooterSimple"; +import { Sparkles } from "lucide-react"; + +export default function PricingPage() { + return ( + + + +
+ +
+ + +
+ ); +}