From 2fb8d89abe65edeae1999e364bca613efe94bdea Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 17 Apr 2026 06:49:59 +0000 Subject: [PATCH] Update src/app/insurance/page.tsx --- src/app/insurance/page.tsx | 67 +++++++------------------------------- 1 file changed, 12 insertions(+), 55 deletions(-) diff --git a/src/app/insurance/page.tsx b/src/app/insurance/page.tsx index 6d7c44d..3b866df 100644 --- a/src/app/insurance/page.tsx +++ b/src/app/insurance/page.tsx @@ -2,12 +2,13 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import ReactLenis from "lenis/react"; +import { Camera, FileText, Phone, Gavel } from 'lucide-react'; import FeatureCardTwentySix from '@/components/sections/feature/FeatureCardTwentySix'; import FooterCard from '@/components/sections/footer/FooterCard'; import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay'; import TextAbout from '@/components/sections/about/TextAbout'; -export default function LandingPage() { +export default function InsurancePage() { return ( @@ -54,12 +40,7 @@ export default function LandingPage() { @@ -70,34 +51,10 @@ export default function LandingPage() { title="Why Insurance Claims Fail" description="Most claims are denied due to lack of documentation. We fix that." features={[ - { - title: "Professional Documentation", - description: "We take the photos they need.", - buttonIcon: "Camera", - imageSrc: "http://img.b2bpic.net/free-photo/speech-bubble-cut-out-icon_53876-71319.jpg?_wi=3", - imageAlt: "chat bubble icon premium", - }, - { - title: "Detailed Estimates", - description: "We use industry-standard pricing.", - buttonIcon: "FileText", - imageSrc: "http://img.b2bpic.net/free-photo/exterior-home_74190-4300.jpg?_wi=4", - imageAlt: "chat bubble icon premium", - }, - { - title: "Claim Representation", - description: "We speak with your adjustor directly.", - buttonIcon: "Phone", - imageSrc: "http://img.b2bpic.net/free-vector/shield-love-silhouette-logo_361591-2147.jpg?_wi=3", - imageAlt: "chat bubble icon premium", - }, - { - title: "Coverage Advocacy", - description: "We fight for what you're owed.", - buttonIcon: "Gavel", - imageSrc: "http://img.b2bpic.net/free-vector/background-with-advocacy-elements_23-2147814115.jpg?_wi=3", - imageAlt: "chat bubble icon premium", - }, + { title: "Professional Documentation", description: "We take the photos they need.", buttonIcon: Camera, imageSrc: "http://img.b2bpic.net/free-photo/speech-bubble-cut-out-icon_53876-71319.jpg", imageAlt: "chat bubble icon premium" }, + { title: "Detailed Estimates", description: "We use industry-standard pricing.", buttonIcon: FileText, imageSrc: "http://img.b2bpic.net/free-photo/exterior-home_74190-4300.jpg", imageAlt: "chat bubble icon premium" }, + { title: "Claim Representation", description: "We speak with your adjustor directly.", buttonIcon: Phone, imageSrc: "http://img.b2bpic.net/free-vector/shield-love-silhouette-logo_361591-2147.jpg", imageAlt: "chat bubble icon premium" }, + { title: "Coverage Advocacy", description: "We fight for what you're owed.", buttonIcon: Gavel, imageSrc: "http://img.b2bpic.net/free-vector/background-with-advocacy-elements_23-2147814115.jpg", imageAlt: "chat bubble icon premium" }, ]} />