diff --git a/src/app/pricing/page.tsx b/src/app/pricing/page.tsx new file mode 100644 index 0000000..e39b544 --- /dev/null +++ b/src/app/pricing/page.tsx @@ -0,0 +1,95 @@ +"use client"; + +import ReactLenis from "lenis/react"; +import NavbarLayoutFloatingInline from "@/components/navbar/NavbarLayoutFloatingInline"; +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import PricingCardNine from "@/components/sections/pricing/PricingCardNine"; +import FooterBaseReveal from "@/components/sections/footer/FooterBaseReveal"; +import { Zap, Shield, Rocket, Target, Sparkles, Crown, Mail, Users, Layers, Code, DollarSign, Gem, Star } from "lucide-react"; + +export default function PricingPage() { + const navItems = [ + { name: "Features", href: "/#features" }, + { name: "Pricing", href: "/pricing" }, + { name: "About", href: "/about" }, + { name: "Contact", href: "/#contact" } + ]; + + const footerColumns = [ + { + title: "Product", items: [ + { label: "Features", href: "/#features" }, + { label: "Pricing", href: "/pricing" }, + { label: "Integrations", href: "#" }, + { label: "Changelog", href: "#" }, + ], + }, + { + title: "Company", items: [ + { label: "About", href: "/about" }, + { label: "Blog", href: "#" }, + { label: "Careers", href: "#" }, + { label: "Contact", href: "/#contact" }, + ], + }, + { + title: "Resources", items: [ + { label: "Documentation", href: "#" }, + { label: "Help Center", href: "#" }, + { label: "Community", href: "#" }, + { label: "Status", href: "#" }, + ], + }, + { + title: "Legal", items: [ + { label: "Privacy", href: "#" }, + { label: "Terms", href: "#" }, + { label: "Security", href: "#" }, + ], + }, + ]; + + return ( + + + +
+ +
+ +
+
+ ); +}