From 0dec3d72e0aee6dbd8be085380c9ef801033b1e1 Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 3 Mar 2026 11:24:07 +0000 Subject: [PATCH] Switch to version 1: modified src/app/pricing/page.tsx --- src/app/pricing/page.tsx | 42 +++++++++++++++++++++++----------------- 1 file changed, 24 insertions(+), 18 deletions(-) diff --git a/src/app/pricing/page.tsx b/src/app/pricing/page.tsx index 552240a..2698ce7 100644 --- a/src/app/pricing/page.tsx +++ b/src/app/pricing/page.tsx @@ -1,13 +1,22 @@ "use client"; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import Link from "next/link"; import NavbarStyleApple from "@/components/navbar/NavbarStyleApple/NavbarStyleApple"; import PricingCardEight from "@/components/sections/pricing/PricingCardEight"; import FaqDouble from "@/components/sections/faq/FaqDouble"; import FooterLogoReveal from "@/components/sections/footer/FooterLogoReveal"; -import { CreditCard, Star, Sparkles, Crown, HelpCircle } from "lucide-react"; +import { CreditCard, HelpCircle, Star, Sparkles, Crown } from "lucide-react"; + +const PricingPage = () => { + const navItems = [ + { name: "Features", id: "features" }, + { name: "Pricing", id: "pricing" }, + { name: "About", id: "about" }, + { name: "Contact", id: "contact" }, + { name: "Blog", id: "https://blog.webild.io" }, + ]; -export default function PricingPage() { return ( + {/* Navbar */} + {/* Pricing Section */}
+ {/* FAQ Section */}
+ {/* Footer */}