diff --git a/src/app/page.tsx b/src/app/page.tsx index 303242d..e39dbae 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -2,7 +2,7 @@ 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 FaqBase from '@/components/sections/faq/FaqBase'; import FeatureCardNineteen from '@/components/sections/feature/FeatureCardNineteen'; import FooterLogoReveal from '@/components/sections/footer/FooterLogoReveal'; @@ -31,16 +31,11 @@ export default function LandingPage() {
@@ -100,16 +77,11 @@ export default function LandingPage() { textboxLayout="default" useInvertedBackground={false} features={[ - { - tag: "Home", title: "Homeowners Insurance", subtitle: "Protection for your biggest asset", description: "Comprehensive coverage for your residence and belongings.", imageSrc: "http://img.b2bpic.net/free-photo/business-grass-communication-profession-idyllic_1134-1134.jpg"}, - { - tag: "Auto", title: "Auto Insurance", subtitle: "Coverage for every mile", description: "Reliable vehicle protection for your daily commute and beyond.", imageSrc: "http://img.b2bpic.net/free-photo/woman-hand-holding-smartphone-use-car-insurance-application-online-after-his-broken-car-insurance-concept_493343-30005.jpg"}, - { - tag: "Life", title: "Life Insurance", subtitle: "Security for your loved ones", description: "Customizable life insurance plans to ensure family future.", imageSrc: "http://img.b2bpic.net/free-photo/yellow-umbrella-casting-shadow_53876-74755.jpg"}, - { - tag: "Commercial", title: "Business Insurance", subtitle: "Scale with confidence", description: "Tailored liability and property protection for your enterprise.", imageSrc: "http://img.b2bpic.net/free-photo/close-up-hands-with-family-figure-concept_23-2148488290.jpg"}, - { - tag: "Umbrella", title: "Umbrella Policy", subtitle: "Extra peace of mind", description: "Additional liability coverage for major life events.", imageSrc: "http://img.b2bpic.net/free-photo/protection-concept-with-umbrella_23-2149277073.jpg"}, + { tag: "Home", title: "Homeowners Insurance", subtitle: "Protection for your biggest asset", description: "Comprehensive coverage for your residence and belongings.", imageSrc: "http://img.b2bpic.net/free-photo/business-grass-communication-profession-idyllic_1134-1134.jpg" }, + { tag: "Auto", title: "Auto Insurance", subtitle: "Coverage for every mile", description: "Reliable vehicle protection for your daily commute and beyond.", imageSrc: "http://img.b2bpic.net/free-photo/woman-hand-holding-smartphone-use-car-insurance-application-online-after-his-broken-car-insurance-concept_493343-30005.jpg" }, + { tag: "Life", title: "Life Insurance", subtitle: "Security for your loved ones", description: "Customizable life insurance plans to ensure family future.", imageSrc: "http://img.b2bpic.net/free-photo/yellow-umbrella-casting-shadow_53876-74755.jpg" }, + { tag: "Commercial", title: "Business Insurance", subtitle: "Scale with confidence", description: "Tailored liability and property protection for your enterprise.", imageSrc: "http://img.b2bpic.net/free-photo/close-up-hands-with-family-figure-concept_23-2148488290.jpg" }, + { tag: "Umbrella", title: "Umbrella Policy", subtitle: "Extra peace of mind", description: "Additional liability coverage for major life events.", imageSrc: "http://img.b2bpic.net/free-photo/protection-concept-with-umbrella_23-2149277073.jpg" }, ]} title="Comprehensive Coverage Options" description="We specialize in finding the right protection for every stage of your life." @@ -123,18 +95,12 @@ export default function LandingPage() { gridVariant="uniform-all-items-equal" useInvertedBackground={true} products={[ - { - id: "p1", name: "Umbrella Liability", price: "Custom", imageSrc: "http://img.b2bpic.net/free-photo/close-up-hand-holding-pen_23-2149191373.jpg"}, - { - id: "p2", name: "Commercial Liability", price: "Custom", imageSrc: "http://img.b2bpic.net/free-photo/paper-mortgage-request-table_23-2147764189.jpg"}, - { - id: "p3", name: "Health Insurance", price: "Custom", imageSrc: "http://img.b2bpic.net/free-photo/close-up-smartphone-money-graphs-charts-workplace-office-business-concept_1150-2266.jpg"}, - { - id: "p4", name: "Property Insurance", price: "Custom", imageSrc: "http://img.b2bpic.net/free-photo/handicapped-young-woman-office-listening_23-2148497270.jpg"}, - { - id: "p5", name: "Renters Insurance", price: "Custom", imageSrc: "http://img.b2bpic.net/free-photo/insurance-policy-agreement-terms-document-concept_53876-134017.jpg"}, - { - id: "p6", name: "Disability Policy", price: "Custom", imageSrc: "http://img.b2bpic.net/free-photo/mortgage-loan-request-modification-document-concept_53876-132731.jpg"}, + { id: "p1", name: "Umbrella Liability", price: "Custom", imageSrc: "http://img.b2bpic.net/free-photo/close-up-hand-holding-pen_23-2149191373.jpg" }, + { id: "p2", name: "Commercial Liability", price: "Custom", imageSrc: "http://img.b2bpic.net/free-photo/paper-mortgage-request-table_23-2147764189.jpg" }, + { id: "p3", name: "Health Insurance", price: "Custom", imageSrc: "http://img.b2bpic.net/free-photo/close-up-smartphone-money-graphs-charts-workplace-office-business-concept_1150-2266.jpg" }, + { id: "p4", name: "Property Insurance", price: "Custom", imageSrc: "http://img.b2bpic.net/free-photo/handicapped-young-woman-office-listening_23-2148497270.jpg" }, + { id: "p5", name: "Renters Insurance", price: "Custom", imageSrc: "http://img.b2bpic.net/free-photo/insurance-policy-agreement-terms-document-concept_53876-134017.jpg" }, + { id: "p6", name: "Disability Policy", price: "Custom", imageSrc: "http://img.b2bpic.net/free-photo/mortgage-loan-request-modification-document-concept_53876-132731.jpg" }, ]} title="Our Insurance Portfolio" description="Detailed coverage solutions for various professional and personal needs." @@ -176,20 +142,20 @@ export default function LandingPage() {