From cc29eeb69c02f9034d5bfeed7ddfe9ad8f3d236b Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 21 Mar 2026 10:00:52 +0000 Subject: [PATCH] Update src/app/pricing/page.tsx --- src/app/pricing/page.tsx | 175 ++++++++++++--------------------------- 1 file changed, 52 insertions(+), 123 deletions(-) diff --git a/src/app/pricing/page.tsx b/src/app/pricing/page.tsx index b6a9d4e..2e15f9e 100644 --- a/src/app/pricing/page.tsx +++ b/src/app/pricing/page.tsx @@ -11,47 +11,43 @@ import { DollarSign, HelpCircle, Sparkles } from "lucide-react"; export default function PricingPage() { const navItems = [ - { name: "Home", id: "home" }, - { name: "Courses", id: "courses" }, - { name: "Pricing", id: "pricing" }, - { name: "About", id: "about" }, - { name: "Contact", id: "contact" }, + { name: "Home", id: "/" }, + { name: "Courses", id: "/courses" }, + { name: "Pricing", id: "/pricing" }, + { name: "About", id: "/about" }, + { name: "Contact", id: "#contact" }, ]; const footerColumns = [ { - title: "Product", - items: [ + title: "Product", items: [ { label: "Courses", href: "/courses" }, { label: "Pricing", href: "/pricing" }, - { label: "Features", href: "/" }, - { label: "Community", href: "/" }, + { label: "Features", href: "#features" }, + { label: "Community", href: "#community" }, ], }, { - title: "Company", - items: [ + title: "Company", items: [ { label: "About Us", href: "/about" }, { label: "Our Team", href: "/about" }, - { label: "Careers", href: "/" }, - { label: "Blog", href: "/" }, + { label: "Careers", href: "#careers" }, + { label: "Blog", href: "#blog" }, ], }, { - title: "Resources", - items: [ - { label: "Help Center", href: "/" }, - { label: "Trading Guide", href: "/" }, - { label: "Market News", href: "/" }, - { label: "API Docs", href: "/" }, + title: "Resources", items: [ + { label: "Help Center", href: "#help" }, + { label: "Trading Guide", href: "#guide" }, + { label: "Market News", href: "#news" }, + { label: "API Docs", href: "#docs" }, ], }, { - title: "Legal", - items: [ - { label: "Privacy Policy", href: "/" }, - { label: "Terms of Service", href: "/" }, - { label: "Disclaimer", href: "/" }, + title: "Legal", items: [ + { label: "Privacy Policy", href: "#privacy" }, + { label: "Terms of Service", href: "#terms" }, + { label: "Disclaimer", href: "#disclaimer" }, { label: "Contact", href: "/contact" }, ], }, @@ -75,9 +71,7 @@ export default function PricingPage() { brandName="TradeWise" navItems={navItems} button={{ - text: "Start Learning", - href: "/courses", - }} + text: "Start Learning", href: "/courses"}} /> @@ -86,67 +80,25 @@ export default function PricingPage() { @@ -242,4 +171,4 @@ export default function PricingPage() { ); -} \ No newline at end of file +}