From 862eefbfcccdf91ba4eb59dc5e063c66ab304382 Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 23 Mar 2026 16:25:20 +0000 Subject: [PATCH] Update src/app/page.tsx --- src/app/page.tsx | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 6a84ea3..fd331dd 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -10,7 +10,7 @@ import InlineImageSplitTextAbout from '@/components/sections/about/InlineImageSp import MetricCardTen from '@/components/sections/metrics/MetricCardTen'; import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline'; import PricingCardThree from '@/components/sections/pricing/PricingCardThree'; -import { Linkedin, Sparkles, Star, Twitter } from "lucide-react"; +import { BookText, ClipboardCheck, DollarSign, FileText, Linkedin, MessageSquareMore, Sparkles, Star, Twitter, Wallet } from "lucide-react"; export default function LandingPage() { return ( @@ -134,32 +134,32 @@ export default function LandingPage() { { title: "Information Overload", description: "Drowning in conflicting advice from YouTube, Reddit, and social media? We provide clarity and focus.", - buttonIcon: "BookText", + buttonIcon: BookText, }, { title: "Personalized Strategy Session", description: "Analyze your specific situation and create your personalized roadmap. Get your first investment idea in 30 minutes.", - buttonIcon: "ClipboardCheck", + buttonIcon: ClipboardCheck, }, { title: "Actionable Investment Playbook", description: "Your personalized 40-page actionable guide including risk management and portfolio structure tailored to YOU.", - buttonIcon: "FileText", + buttonIcon: FileText, }, { title: "Continuous Support", description: "Ongoing guidance to keep you on track and confident in your investment decisions, beyond just initial setup.", - buttonIcon: "MessageSquareMore", + buttonIcon: MessageSquareMore, }, { title: "Not a 'Get-Rich-Quick' Scheme", description: "Fintry is for those willing to learn and invest time, not seeking guaranteed returns or speculative trading.", - buttonIcon: "DollarSign", + buttonIcon: DollarSign, }, { title: "Empowerment, Not Management", description: "We teach you to manage your own money; we don't manage it for you. Take full control of your financial future.", - buttonIcon: "Wallet", + buttonIcon: Wallet, }, ]} title="Solving Beginner Investment Challenges" @@ -171,6 +171,7 @@ export default function LandingPage() {