From 620d13dbd591976bb4437f69b89127ae80eb2e8c Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 7 Mar 2026 11:56:00 +0000 Subject: [PATCH] Add src/app/pricing/page.tsx --- src/app/pricing/page.tsx | 124 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 124 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..843ebb0 --- /dev/null +++ b/src/app/pricing/page.tsx @@ -0,0 +1,124 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import NavbarLayoutFloatingInline from "@/components/navbar/NavbarLayoutFloatingInline"; +import PricingCardTwo from "@/components/sections/pricing/PricingCardTwo"; +import FooterSimple from "@/components/sections/footer/FooterSimple"; +import { ShoppingBag, CheckCircle } from "lucide-react"; + +export default function PricingPage() { + return ( + + + +
+ +
+ + +
+ ); +}