From 1ac14b6814fe4b88afd57de9d015db7b2c3b7a6e Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 19 Feb 2026 18:30:35 +0000 Subject: [PATCH] Update src/app/page.tsx --- src/app/page.tsx | 28 +++++++++++++++++++++++++--- 1 file changed, 25 insertions(+), 3 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 791958c..f022418 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -10,7 +10,7 @@ import PricingCardTwo from '@/components/sections/pricing/PricingCardTwo'; import TestimonialCardTen from '@/components/sections/testimonial/TestimonialCardTen'; import ContactSplitForm from '@/components/sections/contact/ContactSplitForm'; import FooterSimple from '@/components/sections/footer/FooterSimple'; -import { BarChart3, Crown, Rocket, Sparkles, Star, TrendingUp, Zap } from "lucide-react"; +import { BarChart3, Crown, Rocket, Sparkles, Star, TrendingUp, Zap, DollarSign, Users, Globe } from "lucide-react"; export default function LandingPage() { return ( @@ -48,8 +48,30 @@ export default function LandingPage() { tag="AI-Powered Investment" tagIcon={Zap} background={{ variant: "sparkles-gradient" }} - dashboardImageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_32SgGlSmvaVv2SYOkECykbr8Q49/a-modern-clean-investment-dashboard-inte-1771523628087-25082175.png?_wi=1" - dashboardImageAlt="Investment dashboard interface" + dashboard={{ + title: "Portfolio Dashboard", stats: [ + { id: "1", label: "Total Assets", value: "$2.4M", icon: DollarSign }, + { id: "2", label: "Active Investments", value: "127", icon: TrendingUp }, + { id: "3", label: "Portfolio Growth", value: "+18.5%", icon: BarChart3 } + ], + logoIcon: Zap, + sidebarItems: [ + { id: "dashboard", label: "Dashboard", icon: BarChart3 }, + { id: "portfolio", label: "Portfolio", icon: TrendingUp }, + { id: "analytics", label: "Analytics", icon: Sparkles }, + { id: "settings", label: "Settings", icon: Users } + ], + buttons: [ + { text: "View Details", href: "#" }, + { text: "Add Investment", href: "#" } + ], + listItems: [ + { id: "1", title: "TechCorp Series A", subtitle: "Growth: +24%", value: "$450K" }, + { id: "2", title: "AI Startup Fund", subtitle: "Growth: +15%", value: "$380K" }, + { id: "3", title: "Green Energy Co", subtitle: "Growth: +12%", value: "$290K" } + ], + imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_32SgGlSmvaVv2SYOkECykbr8Q49/a-modern-clean-investment-dashboard-inte-1771523628087-25082175.png?_wi=1", searchPlaceholder: "Search investments...", chartTitle: "Portfolio Performance", listTitle: "Recent Investments", imageAlt: "Investment dashboard interface" + }} buttons={[ { text: "Start Investing", href: "pricing" }, { text: "Book a Demo", href: "contact" } -- 2.49.1