Update src/app/insurance/page.tsx

This commit is contained in:
2026-04-17 06:49:59 +00:00
parent cb6e73452c
commit 2fb8d89abe

View File

@@ -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 (
<ThemeProvider
defaultButtonVariant="elastic-effect"
@@ -25,26 +26,11 @@ export default function LandingPage() {
<div id="nav" data-section="nav">
<NavbarLayoutFloatingOverlay
navItems={[
{
name: "Home",
id: "/",
},
{
name: "Services",
id: "/services",
},
{
name: "Insurance Claims",
id: "/insurance",
},
{
name: "About",
id: "/about",
},
{
name: "Contact",
id: "/contact",
},
{ name: "Home", id: "/" },
{ name: "Services", id: "/services" },
{ name: "Insurance Claims", id: "/insurance" },
{ name: "About", id: "/about" },
{ name: "Contact", id: "/contact" },
]}
brandName="Roofing The Carolinas"
/>
@@ -54,12 +40,7 @@ export default function LandingPage() {
<TextAbout
useInvertedBackground={false}
title="The Insurance Process, Simplified"
buttons={[
{
text: "Start Your Claim",
href: "/contact",
},
]}
buttons={[{ text: "Start Your Claim", href: "/contact" }]}
/>
</div>
@@ -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" },
]}
/>
</div>