From ae0367747293eb27d7aab8d80ac77208aaa44589 Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 15 Apr 2026 21:38:22 +0000 Subject: [PATCH] Add src/app/pricing/page.tsx --- src/app/pricing/page.tsx | 72 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 72 insertions(+) create mode 100644 src/app/pricing/page.tsx diff --git a/src/app/pricing/page.tsx b/src/app/pricing/page.tsx new file mode 100644 index 0000000..ff31c18 --- /dev/null +++ b/src/app/pricing/page.tsx @@ -0,0 +1,72 @@ +"use client"; + +import ReactLenis from "lenis/react"; +import NavbarLayoutFloatingInline from "@/components/navbar/NavbarLayoutFloatingInline"; +import PricingCardNine from "@/components/sections/pricing/PricingCardNine"; +import ContactSplit from "@/components/sections/contact/ContactSplit"; +import FooterLogoEmphasis from "@/components/sections/footer/FooterLogoEmphasis"; +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import { Sparkles } from "lucide-react"; + +export default function PricingPage() { + const navItems = [ + { name: "Home", id: "/" }, + { name: "Pricing", id: "/pricing" }, + ]; + + return ( + + + + + console.log(email)} + /> + + + + ); +} \ No newline at end of file