From cb5b025b004df140e8941ad77bf354b17d58ba4f Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 28 Mar 2026 10:12:15 +0000 Subject: [PATCH 1/6] Update src/app/about/page.tsx --- src/app/about/page.tsx | 169 ++++++++++++----------------------------- 1 file changed, 48 insertions(+), 121 deletions(-) diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx index a1ea689..0331c4c 100644 --- a/src/app/about/page.tsx +++ b/src/app/about/page.tsx @@ -6,8 +6,9 @@ import FaqSplitText from '@/components/sections/faq/FaqSplitText'; import FeatureCardTwentySix from '@/components/sections/feature/FeatureCardTwentySix'; import FooterBaseReveal from '@/components/sections/footer/FooterBaseReveal'; import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline'; +import { Check, Shield } from "lucide-react"; -export default function LandingPage() { +export default function AboutPage() { return ( - + -
- -
+
+ +
-
- -
+
+ +
- +
); -- 2.49.1 From 45f1c4ef9280bfe3c6bf14c7e88066bb3b107dc4 Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 28 Mar 2026 10:12:15 +0000 Subject: [PATCH 2/6] Update src/app/contact/page.tsx --- src/app/contact/page.tsx | 196 ++++++++++++--------------------------- 1 file changed, 58 insertions(+), 138 deletions(-) diff --git a/src/app/contact/page.tsx b/src/app/contact/page.tsx index 3df1e4d..2edf996 100644 --- a/src/app/contact/page.tsx +++ b/src/app/contact/page.tsx @@ -8,7 +8,7 @@ import FooterBaseReveal from '@/components/sections/footer/FooterBaseReveal'; import MetricCardSeven from '@/components/sections/metrics/MetricCardSeven'; import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline'; -export default function LandingPage() { +export default function ContactPage() { return ( - + -
- -
+
+ +
-
- -
+
+ +
-
- -
+
+ +
- +
); -- 2.49.1 From b2ac6e1c17962eb408eb079c91b653cdedeb4922 Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 28 Mar 2026 10:12:16 +0000 Subject: [PATCH 3/6] Update src/app/investments/page.tsx --- src/app/investments/page.tsx | 191 ++++++++++------------------------- 1 file changed, 52 insertions(+), 139 deletions(-) diff --git a/src/app/investments/page.tsx b/src/app/investments/page.tsx index 6612158..b58a97c 100644 --- a/src/app/investments/page.tsx +++ b/src/app/investments/page.tsx @@ -7,7 +7,7 @@ import MetricCardSeven from '@/components/sections/metrics/MetricCardSeven'; import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline'; import ProductCardThree from '@/components/sections/product/ProductCardThree'; -export default function LandingPage() { +export default function InvestmentsPage() { return ( - + -
- -
+
+ +
-
- -
+
+ +
- +
); -- 2.49.1 From c9f564857940ed10a5af02c74916dbae47cea922 Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 28 Mar 2026 10:12:16 +0000 Subject: [PATCH 4/6] Update src/app/page.tsx --- src/app/page.tsx | 386 +++++++++++++---------------------------------- 1 file changed, 105 insertions(+), 281 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 5041540..c0466e2 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -9,7 +9,7 @@ import FooterBaseReveal from '@/components/sections/footer/FooterBaseReveal'; import HeroSplitDoubleCarousel from '@/components/sections/hero/HeroSplitDoubleCarousel'; import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline'; import ProductCardThree from '@/components/sections/product/ProductCardThree'; -import { Award, Briefcase, Building, Globe, Users } from "lucide-react"; +import { Award, Briefcase, Building, Globe, Users, Search, BarChart, Eye, Shield, TrendingUp } from "lucide-react"; export default function LandingPage() { return ( @@ -26,292 +26,116 @@ export default function LandingPage() { headingFontWeight="normal" > - + -
- -
+
+ +
-
- -
+
+ +
-
- -
+
+ +
-
- -
+
+ +
-
- -
+
+ +
- +
); -- 2.49.1 From feb2eaa10bff84d34b9efe556fa40bcb7ec7ce04 Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 28 Mar 2026 10:12:16 +0000 Subject: [PATCH 5/6] Update src/app/privacy/page.tsx --- src/app/privacy/page.tsx | 217 ++++++++++++--------------------------- 1 file changed, 64 insertions(+), 153 deletions(-) diff --git a/src/app/privacy/page.tsx b/src/app/privacy/page.tsx index 7cec94f..584cd98 100644 --- a/src/app/privacy/page.tsx +++ b/src/app/privacy/page.tsx @@ -6,8 +6,9 @@ import FaqDouble from '@/components/sections/faq/FaqDouble'; import FeatureCardTwentySix from '@/components/sections/feature/FeatureCardTwentySix'; import FooterBaseReveal from '@/components/sections/footer/FooterBaseReveal'; import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline'; +import { Lock, FileText } from "lucide-react"; -export default function LandingPage() { +export default function PrivacyPage() { return ( - + -
- -
+
+ +
-
- -
+
+ +
-
- -
+
+ +
- +
); -- 2.49.1 From 0ce0ffa0b1dda8633bb0a9677e187cb15df4d055 Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 28 Mar 2026 10:12:17 +0000 Subject: [PATCH 6/6] Update src/app/team/page.tsx --- src/app/team/page.tsx | 233 ++++++++++++------------------------------ 1 file changed, 64 insertions(+), 169 deletions(-) diff --git a/src/app/team/page.tsx b/src/app/team/page.tsx index 9690ba7..fc5cf5c 100644 --- a/src/app/team/page.tsx +++ b/src/app/team/page.tsx @@ -8,7 +8,7 @@ import SocialProofOne from '@/components/sections/socialProof/SocialProofOne'; import TeamCardOne from '@/components/sections/team/TeamCardOne'; import TeamCardTwo from '@/components/sections/team/TeamCardTwo'; -export default function LandingPage() { +export default function TeamPage() { return ( - + -
- -
+
+ +
-
- -
+
+ +
-
- -
+
+ +
- +
); -- 2.49.1