From 89dfd757d494197fbb87ab932bc1e9793a0cf824 Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 15 May 2026 16:43:29 +0000 Subject: [PATCH] Add src/app/pricing-highlighted-cards/page.tsx --- src/app/pricing-highlighted-cards/page.tsx | 69 ++++++++++++++++++++++ 1 file changed, 69 insertions(+) create mode 100644 src/app/pricing-highlighted-cards/page.tsx diff --git a/src/app/pricing-highlighted-cards/page.tsx b/src/app/pricing-highlighted-cards/page.tsx new file mode 100644 index 0000000..98b16c8 --- /dev/null +++ b/src/app/pricing-highlighted-cards/page.tsx @@ -0,0 +1,69 @@ +"use client"; + +import ReactLenis from "lenis/react"; +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import NavbarLayoutFloatingOverlay from "@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay"; +import FooterBase from "@/components/sections/footer/FooterBase"; +import PricingCardTwo from "@/components/sections/pricing/PricingCardTwo"; +import { CheckCircle } from "lucide-react"; + +export default function PricingHighlightedCardsPage() { + return ( + + + +
+ +
+ +
+
+ ); +} \ No newline at end of file