Home

import { useState } from “react”; import { motion } from “framer-motion”; import { Card, CardContent } from “@/components/ui/card”; import { Button } from “@/components/ui/button”; import { Shield, Heart, Car, Home } from “lucide-react”; export default function InsuranceWebsite() { const [email, setEmail] = useState(“”); return (
{/* NAVBAR */} {/* HERO */}
Protect Your Future Today

Affordable insurance plans for you and your family

{/* SERVICES */}

Health Insurance

Medical coverage for you and your family.

Car Insurance

Protection for your vehicle against accidents.

Home Insurance

Secure your home and belongings.

Life Insurance

Financial protection for your loved ones.

{/* ABOUT */}

About Us

We are a trusted insurance company dedicated to protecting your health, property, and future. Our mission is to provide affordable and reliable coverage for everyone.

{/* CTA */}

Get Your Free Quote

Enter your email and we will contact you

setEmail(e.target.value)} className=”p-2 rounded text-black” />
{/* FOOTER */}
© 2026 SecureLife Insurance. All rights reserved.
); }