From f7c3d56c3a6f1b06ebe13088b3ea6d5a2032ba32 Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 19 Mar 2026 11:38:58 +0000 Subject: [PATCH 1/2] Update src/app/page.tsx --- src/app/page.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 00212d9..1135860 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -281,7 +281,7 @@ export default function LandingPage() { { items: [ { label: "Features", href: "#features" }, - { label: "Pricing", href: "#pricing" }, + { label: "Pricing", href: "/pricing" }, { label: "Testimonials", href: "#testimonials" }, { label: "Blog", href: "/blog" } ] -- 2.49.1 From 26a76aaf803afe2c8560e00dc645c5a728d7b216 Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 19 Mar 2026 11:38:58 +0000 Subject: [PATCH 2/2] Add src/app/pricing/page.tsx --- src/app/pricing/page.tsx | 188 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 188 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..2fc22df --- /dev/null +++ b/src/app/pricing/page.tsx @@ -0,0 +1,188 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple'; +import HeroLogoBillboard from '@/components/sections/hero/HeroLogoBillboard'; +import PricingCardOne from '@/components/sections/pricing/PricingCardOne'; +import FeatureCardNineteen from '@/components/sections/feature/FeatureCardNineteen'; +import ContactCenter from '@/components/sections/contact/ContactCenter'; +import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis'; +import { CreditCard, Sparkles, Zap, Send, Check, X } from 'lucide-react'; + +export default function PricingPage() { + return ( + + + +
+ +
+ +
+ +
+ +
+ +
+ +
+ +
+ + +
+ ); +} + +import { Star } from 'lucide-react'; \ No newline at end of file -- 2.49.1