From a6e540a0691b13447865ae8c740f67bb21d40189 Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 19 Feb 2026 18:27:38 +0000 Subject: [PATCH 1/3] Update src/app/page.tsx --- src/app/page.tsx | 28 +++------------------------- 1 file changed, 3 insertions(+), 25 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 94e399d..791958c 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, Menu, Search, Filter, Settings } from "lucide-react"; +import { BarChart3, Crown, Rocket, Sparkles, Star, TrendingUp, Zap } from "lucide-react"; export default function LandingPage() { return ( @@ -48,30 +48,8 @@ export default function LandingPage() { tag="AI-Powered Investment" tagIcon={Zap} background={{ variant: "sparkles-gradient" }} - dashboard={{ - title: "Investment Dashboard", stats: [ - { values: "$2.4M", trend: "up" }, - { values: "47", trend: "up" }, - { values: "12.3%", trend: "up" } - ], - logoIcon: TrendingUp, - sidebarItems: [ - { active: true, icon: Menu }, - { active: false, icon: Search }, - { active: false, icon: Filter }, - { active: false, icon: Settings } - ], - buttons: [ - { text: "View Details", href: "#" }, - { text: "Export Data", href: "#" } - ], - listItems: [ - { title: "TechCorp Series B", status: "positive", icon: TrendingUp }, - { title: "FinanceAI Seed", status: "positive", icon: Rocket }, - { title: "CloudStart A", status: "negative", icon: BarChart3 } - ], - imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_32SgGlSmvaVv2SYOkECykbr8Q49/a-modern-clean-investment-dashboard-inte-1771523628087-25082175.png?_wi=1", imageAlt: "Investment dashboard interface", searchPlaceholder: "Search investments...", chartTitle: "Portfolio Performance", listTitle: "Recent Activity" - }} + 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" buttons={[ { text: "Start Investing", href: "pricing" }, { text: "Book a Demo", href: "contact" } -- 2.49.1 From 2bd0b7b74cde9eccf203693935e0e15ba9d2365c Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 19 Feb 2026 18:27:39 +0000 Subject: [PATCH 2/3] Update src/app/shop/[id]/page.tsx --- src/app/shop/[id]/page.tsx | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/src/app/shop/[id]/page.tsx b/src/app/shop/[id]/page.tsx index d6a761a..59d315c 100644 --- a/src/app/shop/[id]/page.tsx +++ b/src/app/shop/[id]/page.tsx @@ -90,8 +90,7 @@ export default function ProductPage({ params }: ProductPageProps) { { name: "Pricing", id: "pricing" }, { name: "About", id: "about" }, { name: "Blog", id: "blog" }, - { name: "Contact", id: "contact" }, - { name: "Shop", id: "/shop" } + { name: "Contact", id: "contact" } ]} bottomLeftText="Global Tech Investors" bottomRightText="hello@capitalflow.io" @@ -130,8 +129,7 @@ export default function ProductPage({ params }: ProductPageProps) { { name: "Pricing", id: "pricing" }, { name: "About", id: "about" }, { name: "Blog", id: "blog" }, - { name: "Contact", id: "contact" }, - { name: "Shop", id: "/shop" } + { name: "Contact", id: "contact" } ]} bottomLeftText="Global Tech Investors" bottomRightText="hello@capitalflow.io" @@ -177,8 +175,7 @@ export default function ProductPage({ params }: ProductPageProps) { { name: "Pricing", id: "pricing" }, { name: "About", id: "about" }, { name: "Blog", id: "blog" }, - { name: "Contact", id: "contact" }, - { name: "Shop", id: "/shop" } + { name: "Contact", id: "contact" } ]} bottomLeftText="Global Tech Investors" bottomRightText="hello@capitalflow.io" -- 2.49.1 From 1f5eb7560adb112e40197190889d9dbe0a8125e6 Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 19 Feb 2026 18:27:40 +0000 Subject: [PATCH 3/3] Update src/app/shop/page.tsx --- src/app/shop/page.tsx | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/src/app/shop/page.tsx b/src/app/shop/page.tsx index d06f79b..dfe68c2 100644 --- a/src/app/shop/page.tsx +++ b/src/app/shop/page.tsx @@ -40,8 +40,7 @@ export default function ShopPage() { { name: "Pricing", id: "pricing" }, { name: "About", id: "about" }, { name: "Blog", id: "blog" }, - { name: "Contact", id: "contact" }, - { name: "Shop", id: "/shop" } + { name: "Contact", id: "contact" } ]} bottomLeftText="Global Tech Investors" bottomRightText="hello@capitalflow.io" @@ -78,8 +77,7 @@ export default function ShopPage() { { name: "Pricing", id: "pricing" }, { name: "About", id: "about" }, { name: "Blog", id: "blog" }, - { name: "Contact", id: "contact" }, - { name: "Shop", id: "/shop" } + { name: "Contact", id: "contact" } ]} bottomLeftText="Global Tech Investors" bottomRightText="hello@capitalflow.io" -- 2.49.1