From e46a1bdc6e087648b0d7b09e8b6179904e92d20d Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 15 Apr 2026 07:27:16 +0000 Subject: [PATCH] Update src/app/page.tsx --- src/app/page.tsx | 134 +++++++++++++++-------------------------------- 1 file changed, 41 insertions(+), 93 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 299ced7..2d6031f 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -2,14 +2,14 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import ReactLenis from "lenis/react"; -import ContactSplit from '@/components/sections/contact/ContactSplit'; +import ContactSplitForm from '@/components/sections/contact/ContactSplitForm'; import FeatureHoverPattern from '@/components/sections/feature/featureHoverPattern/FeatureHoverPattern'; import FooterLogoReveal from '@/components/sections/footer/FooterLogoReveal'; import HeroCentered from '@/components/sections/hero/HeroCentered'; import MediaAbout from '@/components/sections/about/MediaAbout'; import MetricCardThree from '@/components/sections/metrics/MetricCardThree'; import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay'; -import { Briefcase, Building2, Globe, Shield, ShieldCheck, TrendingUp, Users } from "lucide-react"; +import { Briefcase, Building2, Globe, Mail, Shield, ShieldCheck, TrendingUp, Users } from "lucide-react"; export default function LandingPage() { return ( @@ -30,21 +30,13 @@ export default function LandingPage() { @@ -53,63 +45,38 @@ export default function LandingPage() {
@@ -131,23 +98,14 @@ export default function LandingPage() { useInvertedBackground={true} metrics={[ { - id: "m1", - icon: Globe, - title: "Countries", - value: "50+", - }, + id: "m1", icon: Globe, + title: "Countries", value: "50+"}, { - id: "m2", - icon: TrendingUp, - title: "Premium Under Management", - value: "$38bn+", - }, + id: "m2", icon: TrendingUp, + title: "Premium Under Management", value: "$38bn+"}, { - id: "m3", - icon: Users, - title: "Employees", - value: "18,000", - }, + id: "m3", icon: Users, + title: "Employees", value: "18,000"}, ]} title="Our Global Impact" description="Numbers that define our scale and commitment to excellence worldwide." @@ -162,29 +120,19 @@ export default function LandingPage() { features={[ { icon: Building2, - title: "Corporate Businesses", - description: "Supporting enterprises of all sizes with comprehensive risk management.", - }, + title: "Corporate Businesses", description: "Supporting enterprises of all sizes with comprehensive risk management."}, { icon: Briefcase, - title: "Small-to-medium-businesses", - description: "Tailored solutions for local SMEs requiring agility and expertise.", - }, + title: "Small-to-medium-businesses", description: "Tailored solutions for local SMEs requiring agility and expertise."}, { icon: Building2, - title: "Construction & Energy", - description: "Managing complex project risks with specialized industry knowledge.", - }, + title: "Construction & Energy", description: "Managing complex project risks with specialized industry knowledge."}, { icon: Shield, - title: "Marine & Logistics", - description: "Protecting supply chains and transit risks across borders.", - }, + title: "Marine & Logistics", description: "Protecting supply chains and transit risks across borders."}, { icon: ShieldCheck, - title: "Cyber Risk", - description: "Defending your digital assets against evolving threats.", - }, + title: "Cyber Risk", description: "Defending your digital assets against evolving threats."}, ]} title="Expertise tailored to your sector" description="Find specialists who can help you navigate complex insurance landscapes." @@ -192,17 +140,21 @@ export default function LandingPage() {
- console.log("Form submitted:", data)} + buttonText="Contact our CEO" />
@@ -210,13 +162,9 @@ export default function LandingPage() { -- 2.49.1