diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx index fe01522..2966c67 100644 --- a/src/app/about/page.tsx +++ b/src/app/about/page.tsx @@ -34,8 +34,7 @@ export default function AboutPage() { { name: "Contact", id: "/contact" } ]} button={{ - text: "Join Now", - href: "/pricing" + text: "Join Now", href: "/pricing" }} /> @@ -62,17 +61,13 @@ export default function AboutPage() { tag="Impact & Results" metrics={[ { - id: "1", - value: "87%", - description: "Of beginners achieve positive returns within their first 6 months of completing our Foundation program" + id: "1", value: "87%", description: "Of beginners achieve positive returns within their first 6 months of completing our Foundation program" }, { - id: "2", - value: "10,000+", - description: "Active community members sharing insights, strategies, and supporting each other's financial journeys" + id: "2", value: "10,000+", description: "Active community members sharing insights, strategies, and supporting each other's financial journeys" } ]} - useInvertedBackground="invertDefault" + useInvertedBackground="noInvert" /> @@ -80,24 +75,16 @@ export default function AboutPage() { console.log("Blog 1 clicked"), + id: "1", category: "Design", title: "UX review presentations", excerpt: "How do you create compelling presentations that wow your colleagues and impress your managers?", imageSrc: "/placeholders/placeholder3.avif", imageAlt: "Abstract design with purple and silver tones", authorName: "Olivia Rhye", authorAvatar: "/placeholders/placeholder3.avif", date: "20 Jan 2025", onBlogClick: () => console.log("Blog 1 clicked") }, { - id: "2", category: "Development", title: "Building scalable applications", excerpt: "Learn the best practices for building applications that can handle millions of users.", imageSrc: "/placeholders/placeholder4.webp", imageAlt: "Development workspace", authorName: "John Smith", authorAvatar: "/placeholders/placeholder4.webp", date: "18 Jan 2025", onBlogClick: () => console.log("Blog 2 clicked"), + id: "2", category: "Development", title: "Building scalable applications", excerpt: "Learn the best practices for building applications that can handle millions of users.", imageSrc: "/placeholders/placeholder4.webp", imageAlt: "Development workspace", authorName: "John Smith", authorAvatar: "/placeholders/placeholder4.webp", date: "18 Jan 2025", onBlogClick: () => console.log("Blog 2 clicked") }, { - id: "3", category: "Marketing", title: "Content strategy essentials", excerpt: "Discover how to create a content strategy that drives engagement and conversions.", imageSrc: "/placeholders/placeholder3.avif", imageAlt: "Marketing strategy board", authorName: "Sarah Johnson", authorAvatar: "/placeholders/placeholder3.avif", date: "15 Jan 2025", onBlogClick: () => console.log("Blog 3 clicked"), + id: "3", category: "Marketing", title: "Content strategy essentials", excerpt: "Discover how to create a content strategy that drives engagement and conversions.", imageSrc: "/placeholders/placeholder3.avif", imageAlt: "Marketing strategy board", authorName: "Sarah Johnson", authorAvatar: "/placeholders/placeholder3.avif", date: "15 Jan 2025", onBlogClick: () => console.log("Blog 3 clicked") }, { - id: "4", category: "Product", title: "Product management 101", excerpt: "Everything you need to know to become an effective product manager in 2025.", imageSrc: "/placeholders/placeholder4.webp", imageAlt: "Product planning session", authorName: "Mike Davis", authorAvatar: "/placeholders/placeholder4.webp", date: "12 Jan 2025", onBlogClick: () => console.log("Blog 4 clicked"), - }, + id: "4", category: "Product", title: "Product management 101", excerpt: "Everything you need to know to become an effective product manager in 2025.", imageSrc: "/placeholders/placeholder4.webp", imageAlt: "Product planning session", authorName: "Mike Davis", authorAvatar: "/placeholders/placeholder4.webp", date: "12 Jan 2025", onBlogClick: () => console.log("Blog 4 clicked") + } ]; export default function BlogPage() { @@ -54,7 +54,8 @@ export default function BlogPage() { const url = `${apiUrl}/posts/${projectId}?status=published`; const response = await fetch(url, { method: "GET", headers: { - "Content-Type": "application/json"}, + "Content-Type": "application/json" + } }); if (response.ok) { @@ -64,7 +65,7 @@ export default function BlogPage() { const mappedPosts = data.map((post: any) => ({ id: post.id || String(Math.random()), category: post.category || "General", title: post.title || "Untitled", excerpt: post.excerpt || post.content.slice(0, 30) || "", imageSrc: post.imageUrl || "/placeholders/placeholder3.avif", imageAlt: post.imageAlt || post.title || "", authorName: post.author?.name || "Anonymous", authorAvatar: post.author?.avatar || "/placeholders/placeholder3.avif", date: post.date || post.createdAt || new Date().toLocaleDateString("en-GB", { day: "numeric", month: "short", year: "numeric" }), - onBlogClick: () => console.log(`Blog ${post.id} clicked`), + onBlogClick: () => console.log(`Blog ${post.id} clicked`) })); setPosts(mappedPosts); } diff --git a/src/app/contact/page.tsx b/src/app/contact/page.tsx index b7949b6..5f10805 100644 --- a/src/app/contact/page.tsx +++ b/src/app/contact/page.tsx @@ -34,8 +34,7 @@ export default function ContactPage() { { name: "Contact", id: "/contact" } ]} button={{ - text: "Join Now", - href: "/pricing" + text: "Join Now", href: "/pricing" }} /> @@ -60,30 +59,22 @@ export default function ContactPage() { @@ -93,14 +84,10 @@ export default function ContactPage() { tag="Support Excellence" metrics={[ { - id: "1", - value: "98%", - description: "Member satisfaction rate with our customer support and advisory services" + id: "1", value: "98%", description: "Member satisfaction rate with our customer support and advisory services" }, { - id: "2", - value: "15 min", - description: "Average response time during business hours for urgent member inquiries" + id: "2", value: "15 min", description: "Average response time during business hours for urgent member inquiries" } ]} useInvertedBackground="noInvert" diff --git a/src/app/courses/page.tsx b/src/app/courses/page.tsx index b31f742..6cb07fb 100644 --- a/src/app/courses/page.tsx +++ b/src/app/courses/page.tsx @@ -1,7 +1,7 @@ "use client"; import Link from "next/link"; -import { Award, Sparkles } from "lucide-react"; +import { Award, Sparkles, Target } from "lucide-react"; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay'; import ProductCardTwo from '@/components/sections/product/ProductCardTwo'; @@ -34,8 +34,7 @@ export default function CoursesPage() { { name: "Contact", id: "/contact" } ]} button={{ - text: "Join Now", - href: "/pricing" + text: "Join Now", href: "/pricing" }} /> @@ -48,34 +47,16 @@ export default function CoursesPage() { tagIcon={Award} products={[ { - id: "1", - brand: "Invest King Academy", - name: "Beginner's Blueprint", - price: "$297", - rating: 5, - reviewCount: "2.3k", - imageSrc: "https://img.b2bpic.net/free-photo/rear-view-young-college-student-paying-attention-listening-her-online-teacher-laptop-home_662251-2487.jpg", - imageAlt: "Student learning investment fundamentals online" + id: "1", brand: "Invest King Academy", name: "Beginner's Blueprint", price: "$297", rating: 5, + reviewCount: "2.3k", imageSrc: "https://img.b2bpic.net/free-photo/rear-view-young-college-student-paying-attention-listening-her-online-teacher-laptop-home_662251-2487.jpg", imageAlt: "Student learning investment fundamentals online" }, { - id: "2", - brand: "Invest King Academy", - name: "Advanced Trading Mastery", - price: "$697", - rating: 5, - reviewCount: "1.8k", - imageSrc: "https://img.b2bpic.net/free-photo/online-education-homepage-e-learning-technology-concept_53876-133853.jpg", - imageAlt: "Advanced trading strategies and techniques" + id: "2", brand: "Invest King Academy", name: "Advanced Trading Mastery", price: "$697", rating: 5, + reviewCount: "1.8k", imageSrc: "https://img.b2bpic.net/free-photo/online-education-homepage-e-learning-technology-concept_53876-133853.jpg", imageAlt: "Advanced trading strategies and techniques" }, { - id: "3", - brand: "Invest King Academy", - name: "Elite Wealth Building", - price: "$1,497", - rating: 5, - reviewCount: "890", - imageSrc: "https://img.b2bpic.net/free-photo/virtual-classroom-study-space_23-2149178642.jpg", - imageAlt: "Premium wealth building masterclass" + id: "3", brand: "Invest King Academy", name: "Elite Wealth Building", price: "$1,497", rating: 5, + reviewCount: "890", imageSrc: "https://img.b2bpic.net/free-photo/virtual-classroom-study-space_23-2149178642.jpg", imageAlt: "Premium wealth building masterclass" } ]} textboxLayout="default" @@ -93,48 +74,37 @@ export default function CoursesPage() { tagIcon={Sparkles} features={[ { - title: "Real-Time Market Application", - description: "Apply what you learn immediately with live trading sessions and real market examples", - imageSrc: "https://img.b2bpic.net/free-vector/abstract-financial-big-data-graph-visualization_1217-2826.jpg", - imageAlt: "Live market analysis and trading application" + title: "Real-Time Market Application", description: "Apply what you learn immediately with live trading sessions and real market examples", imageSrc: "https://img.b2bpic.net/free-vector/abstract-financial-big-data-graph-visualization_1217-2826.jpg", imageAlt: "Live market analysis and trading application" }, { - title: "Personalized Mentorship", - description: "Get one-on-one guidance from experienced investors who understand your unique situation", - imageSrc: "https://img.b2bpic.net/free-photo/cheerful-young-speakers-standing-near-whiteboard_74855-4029.jpg", - imageAlt: "Personal mentorship and guidance sessions" + title: "Personalized Mentorship", description: "Get one-on-one guidance from experienced investors who understand your unique situation", imageSrc: "https://img.b2bpic.net/free-photo/cheerful-young-speakers-standing-near-whiteboard_74855-4029.jpg", imageAlt: "Personal mentorship and guidance sessions" }, { - title: "Lifetime Access & Updates", - description: "Keep your knowledge current with lifetime access to course materials and regular updates", - imageSrc: "https://img.b2bpic.net/free-photo/confident-male-stock-broker-waiting-stock-market-open-looking-his-watch-front-his-computer_662251-718.jpg", - imageAlt: "Continuous learning and knowledge updates" + title: "Lifetime Access & Updates", description: "Keep your knowledge current with lifetime access to course materials and regular updates", imageSrc: "https://img.b2bpic.net/free-photo/confident-male-stock-broker-waiting-stock-market-open-looking-his-watch-front-his-computer_662251-718.jpg", imageAlt: "Continuous learning and knowledge updates" }, { - title: "Community Learning Network", - description: "Connect with fellow students and share strategies in our exclusive member community", - imageSrc: "https://img.b2bpic.net/free-vector/contact-red-colorful-infographic_1010-345.jpg", - imageAlt: "Student community and networking opportunities" + title: "Community Learning Network", description: "Connect with fellow students and share strategies in our exclusive member community", imageSrc: "https://img.b2bpic.net/free-vector/contact-red-colorful-infographic_1010-345.jpg", imageAlt: "Student community and networking opportunities" } ]} textboxLayout="default" gridVariant="two-columns-alternating-heights" animationType="slide-up" - useInvertedBackground="invertDefault" + useInvertedBackground="noInvert" />
diff --git a/src/app/layout.tsx b/src/app/layout.tsx index c41cc45..435abc1 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -3,34 +3,22 @@ import { Roboto } from "next/font/google"; import "./globals.css"; const roboto = Roboto({ - variable: "--font-roboto", - subsets: ["latin"], + variable: "--font-roboto", subsets: ["latin"], weight: ["100", "300", "400", "500", "700", "900"], }); export const metadata: Metadata = { - title: "Invest King - Business Training & Investment Education", - description: "Master strategic investing and wealth building with Invest King. Join 10,000+ successful investors through our proven training programs and expert-led courses.", - keywords: "investment training, business education, wealth building, trading courses, financial literacy, investor community", - metadataBase: new URL("https://investking.com"), + title: "Invest King - Business Training & Investment Education", description: "Master strategic investing and wealth building with Invest King. Join 10,000+ successful investors through our proven training programs and expert-led courses.", keywords: "investment training, business education, wealth building, trading courses, financial literacy, investor community", metadataBase: new URL("https://investking.com"), alternates: { canonical: "https://investking.com" }, openGraph: { - title: "Invest King - Transform Your Financial Future", - description: "Master strategic investing and wealth building with expert-led training programs.", - type: "website", - siteName: "Invest King", - images: [{ - url: "https://img.b2bpic.net/free-photo/graph-growth-development-improvement-profit-success-concept_53876-133598.jpg", - alt: "Invest King - Investment Growth" + title: "Invest King - Transform Your Financial Future", description: "Master strategic investing and wealth building with expert-led training programs.", type: "website", siteName: "Invest King", images: [{ + url: "https://img.b2bpic.net/free-photo/graph-growth-development-improvement-profit-success-concept_53876-133598.jpg", alt: "Invest King - Investment Growth" }] }, twitter: { - card: "summary_large_image", - title: "Invest King - Business Training Academy", - description: "Join thousands of successful investors learning from industry experts.", - images: ["https://img.b2bpic.net/free-photo/graph-growth-development-improvement-profit-success-concept_53876-133598.jpg"] + card: "summary_large_image", title: "Invest King - Business Training Academy", description: "Join thousands of successful investors learning from industry experts.", images: ["https://img.b2bpic.net/free-photo/graph-growth-development-improvement-profit-success-concept_53876-133598.jpg"] }, robots: { index: true, diff --git a/src/app/page.tsx b/src/app/page.tsx index 1978d58..b03fc8d 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -38,8 +38,7 @@ export default function HomePage() { { name: "Contact", id: "/contact" } ]} button={{ - text: "Join Now", - href: "/pricing" + text: "Join Now", href: "/pricing" }} /> @@ -72,7 +71,7 @@ export default function HomePage() { ]} imageSrc="https://img.b2bpic.net/free-photo/people-working-as-team-company_23-2149136874.jpg" imageAlt="Invest King training team" - useInvertedBackground="invertDefault" + useInvertedBackground="noInvert" /> @@ -84,28 +83,16 @@ export default function HomePage() { tagIcon={Sparkles} features={[ { - title: "Expert-Led Training", - description: "Learn from industry veterans with 20+ years of investment experience", - imageSrc: "https://img.b2bpic.net/free-photo/cheerful-young-speakers-standing-near-whiteboard_74855-4029.jpg", - imageAlt: "Expert trainer teaching investment strategies" + title: "Expert-Led Training", description: "Learn from industry veterans with 20+ years of investment experience", imageSrc: "https://img.b2bpic.net/free-photo/cheerful-young-speakers-standing-near-whiteboard_74855-4029.jpg", imageAlt: "Expert trainer teaching investment strategies" }, { - title: "Live Market Analysis", - description: "Real-time market insights and trading opportunities shared daily", - imageSrc: "https://img.b2bpic.net/free-vector/abstract-financial-big-data-graph-visualization_1217-2826.jpg", - imageAlt: "Live market analysis dashboard" + title: "Live Market Analysis", description: "Real-time market insights and trading opportunities shared daily", imageSrc: "https://img.b2bpic.net/free-vector/abstract-financial-big-data-graph-visualization_1217-2826.jpg", imageAlt: "Live market analysis dashboard" }, { - title: "Community Support", - description: "Connect with thousands of traders and investors in our exclusive network", - imageSrc: "https://img.b2bpic.net/free-vector/contact-red-colorful-infographic_1010-345.jpg", - imageAlt: "Community members collaborating" + title: "Community Support", description: "Connect with thousands of traders and investors in our exclusive network", imageSrc: "https://img.b2bpic.net/free-vector/contact-red-colorful-infographic_1010-345.jpg", imageAlt: "Community members collaborating" }, { - title: "Proven Strategies", - description: "Access battle-tested investment strategies with documented results", - imageSrc: "https://img.b2bpic.net/free-photo/confident-male-stock-broker-waiting-stock-market-open-looking-his-watch-front-his-computer_662251-718.jpg", - imageAlt: "Growth chart showing investment returns" + title: "Proven Strategies", description: "Access battle-tested investment strategies with documented results", imageSrc: "https://img.b2bpic.net/free-photo/confident-male-stock-broker-waiting-stock-market-open-looking-his-watch-front-his-computer_662251-718.jpg", imageAlt: "Growth chart showing investment returns" } ]} textboxLayout="default" @@ -123,40 +110,22 @@ export default function HomePage() { tagIcon={Award} products={[ { - id: "1", - brand: "Invest King Academy", - name: "Beginner's Blueprint", - price: "$297", - rating: 5, - reviewCount: "2.3k", - imageSrc: "https://img.b2bpic.net/free-photo/rear-view-young-college-student-paying-attention-listening-her-online-teacher-laptop-home_662251-2487.jpg", - imageAlt: "Beginner investing course" + id: "1", brand: "Invest King Academy", name: "Beginner's Blueprint", price: "$297", rating: 5, + reviewCount: "2.3k", imageSrc: "https://img.b2bpic.net/free-photo/rear-view-young-college-student-paying-attention-listening-her-online-teacher-laptop-home_662251-2487.jpg", imageAlt: "Beginner investing course" }, { - id: "2", - brand: "Invest King Academy", - name: "Advanced Trading Mastery", - price: "$697", - rating: 5, - reviewCount: "1.8k", - imageSrc: "https://img.b2bpic.net/free-photo/online-education-homepage-e-learning-technology-concept_53876-133853.jpg", - imageAlt: "Advanced trading masterclass" + id: "2", brand: "Invest King Academy", name: "Advanced Trading Mastery", price: "$697", rating: 5, + reviewCount: "1.8k", imageSrc: "https://img.b2bpic.net/free-photo/online-education-homepage-e-learning-technology-concept_53876-133853.jpg", imageAlt: "Advanced trading masterclass" }, { - id: "3", - brand: "Invest King Academy", - name: "Elite Wealth Building", - price: "$1,497", - rating: 5, - reviewCount: "890", - imageSrc: "https://img.b2bpic.net/free-photo/virtual-classroom-study-space_23-2149178642.jpg", - imageAlt: "Elite wealth building program" + id: "3", brand: "Invest King Academy", name: "Elite Wealth Building", price: "$1,497", rating: 5, + reviewCount: "890", imageSrc: "https://img.b2bpic.net/free-photo/virtual-classroom-study-space_23-2149178642.jpg", imageAlt: "Elite wealth building program" } ]} textboxLayout="default" gridVariant="three-columns-all-equal-width" animationType="scale-rotate" - useInvertedBackground="invertDefault" + useInvertedBackground="noInvert" /> @@ -166,14 +135,10 @@ export default function HomePage() { tag="Success Stories" metrics={[ { - id: "1", - value: "92%", - description: "Of our members report significant improvement in their investment returns within the first year" + id: "1", value: "92%", description: "Of our members report significant improvement in their investment returns within the first year" }, { - id: "2", - value: "45%", - description: "Average annual return achieved by our graduate portfolio managers" + id: "2", value: "45%", description: "Average annual return achieved by our graduate portfolio managers" } ]} useInvertedBackground="noInvert" @@ -184,30 +149,22 @@ export default function HomePage() { @@ -219,60 +176,33 @@ export default function HomePage() { tagIcon={Zap} plans={[ { - id: "1", - badge: "Foundation", - badgeIcon: Sparkles, - price: "$29/mo", - subtitle: "Perfect for beginners", - buttons: [ + id: "1", badge: "Foundation", badgeIcon: Sparkles, + price: "$29/mo", subtitle: "Perfect for beginners", buttons: [ { text: "Start Free Trial", href: "/signup" }, { text: "Learn More", href: "#" } ], features: [ - "Beginner's Blueprint course", - "Weekly live training sessions", - "Access to member community", - "Investment fundamentals guide", - "Monthly market analysis" + "Beginner's Blueprint course", "Weekly live training sessions", "Access to member community", "Investment fundamentals guide", "Monthly market analysis" ] }, { - id: "2", - badge: "Professional", - badgeIcon: Award, - price: "$99/mo", - subtitle: "Best for active traders", - buttons: [ + id: "2", badge: "Professional", badgeIcon: Award, + price: "$99/mo", subtitle: "Best for active traders", buttons: [ { text: "Get Started", href: "/signup" }, { text: "Chat to Sales", href: "#contact" } ], features: [ - "All Foundation features", - "Advanced Trading Mastery course", - "Daily market alerts & signals", - "1-on-1 mentoring sessions", - "Portfolio analysis tools", - "Exclusive webinars" + "All Foundation features", "Advanced Trading Mastery course", "Daily market alerts & signals", "1-on-1 mentoring sessions", "Portfolio analysis tools", "Exclusive webinars" ] }, { - id: "3", - badge: "Elite", - badgeIcon: Crown, - price: "$249/mo", - subtitle: "For serious wealth builders", - buttons: [ + id: "3", badge: "Elite", badgeIcon: Crown, + price: "$249/mo", subtitle: "For serious wealth builders", buttons: [ { text: "Become Elite", href: "/signup" }, { text: "Schedule Call", href: "#contact" } ], features: [ - "All Professional features", - "Elite Wealth Building program", - "Private trading room access", - "Weekly 1-on-1 coaching", - "Advanced portfolio management", - "First access to new strategies", - "VIP event invitations" + "All Professional features", "Elite Wealth Building program", "Private trading room access", "Weekly 1-on-1 coaching", "Advanced portfolio management", "First access to new strategies", "VIP event invitations" ] } ]} diff --git a/src/app/pricing/page.tsx b/src/app/pricing/page.tsx index 010ab05..b45b753 100644 --- a/src/app/pricing/page.tsx +++ b/src/app/pricing/page.tsx @@ -1,7 +1,7 @@ "use client"; import Link from "next/link"; -import { Zap, Sparkles, Award, Crown } from "lucide-react"; +import { Zap, Sparkles, Award, Crown, Target } from "lucide-react"; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay'; import PricingCardTwo from '@/components/sections/pricing/PricingCardTwo'; @@ -34,8 +34,7 @@ export default function PricingPage() { { name: "Contact", id: "/contact" } ]} button={{ - text: "Join Now", - href: "/pricing" + text: "Join Now", href: "/pricing" }} /> @@ -48,66 +47,33 @@ export default function PricingPage() { tagIcon={Zap} plans={[ { - id: "1", - badge: "Foundation", - badgeIcon: Sparkles, - price: "$29/mo", - subtitle: "Perfect for investment beginners", - buttons: [ + id: "1", badge: "Foundation", badgeIcon: Sparkles, + price: "$29/mo", subtitle: "Perfect for investment beginners", buttons: [ { text: "Start Free Trial", href: "/signup" }, { text: "Learn More", href: "#" } ], features: [ - "Beginner's Blueprint course access", - "Weekly live training sessions", - "Access to member community forum", - "Investment fundamentals guide", - "Monthly market analysis reports", - "Email support from instructors", - "Mobile app access" + "Beginner's Blueprint course access", "Weekly live training sessions", "Access to member community forum", "Investment fundamentals guide", "Monthly market analysis reports", "Email support from instructors", "Mobile app access" ] }, { - id: "2", - badge: "Professional", - badgeIcon: Award, - price: "$99/mo", - subtitle: "Ideal for active traders and investors", - buttons: [ + id: "2", badge: "Professional", badgeIcon: Award, + price: "$99/mo", subtitle: "Ideal for active traders and investors", buttons: [ { text: "Get Started Now", href: "/signup" }, { text: "Schedule Demo", href: "#contact" } ], features: [ - "All Foundation plan benefits", - "Advanced Trading Mastery course", - "Daily market alerts & trading signals", - "Monthly 1-on-1 mentoring sessions", - "Portfolio analysis tools & software", - "Exclusive live webinars & Q&A", - "Priority customer support", - "Advanced charting tools access" + "All Foundation plan benefits", "Advanced Trading Mastery course", "Daily market alerts & trading signals", "Monthly 1-on-1 mentoring sessions", "Portfolio analysis tools & software", "Exclusive live webinars & Q&A", "Priority customer support", "Advanced charting tools access" ] }, { - id: "3", - badge: "Elite", - badgeIcon: Crown, - price: "$249/mo", - subtitle: "For serious wealth builders and entrepreneurs", - buttons: [ + id: "3", badge: "Elite", badgeIcon: Crown, + price: "$249/mo", subtitle: "For serious wealth builders and entrepreneurs", buttons: [ { text: "Join Elite Now", href: "/signup" }, { text: "Speak with Advisor", href: "#contact" } ], features: [ - "All Professional plan benefits", - "Elite Wealth Building program access", - "Private trading room with experts", - "Weekly 1-on-1 coaching sessions", - "Advanced portfolio management tools", - "First access to new strategies & courses", - "VIP networking events & retreats", - "Direct phone line to senior mentors", - "Custom investment plan development" + "All Professional plan benefits", "Elite Wealth Building program access", "Private trading room with experts", "Weekly 1-on-1 coaching sessions", "Advanced portfolio management tools", "First access to new strategies & courses", "VIP networking events & retreats", "Direct phone line to senior mentors", "Custom investment plan development" ] } ]} @@ -123,23 +89,20 @@ export default function PricingPage() { tag="Value Delivered" metrics={[ { - id: "1", - value: "$2.3M", - description: "Average additional portfolio value generated by Elite members within 24 months of joining" + id: "1", value: "$2.3M", description: "Average additional portfolio value generated by Elite members within 24 months of joining" }, { - id: "2", - value: "94%", - description: "Of members say Invest King membership paid for itself within the first year" + id: "2", value: "94%", description: "Of members say Invest King membership paid for itself within the first year" } ]} - useInvertedBackground="invertDefault" + useInvertedBackground="noInvert" />