import { Check } from "lucide-react"; import { Button } from "@/components/ui/button"; export default function Welcome() { const features = [ "24/7 Emergency Services", "Pre-Planning Services", "Grief Support Resources", "Veteran Services" ]; return (
Funeral home exterior

Welcome to our Funeral Caring Home

For over 50 years, our family has been dedicated to serving families in their time of greatest need. We understand that losing a loved one is one of life's most difficult experiences, and we're here to provide compassionate support and guidance.

Our experienced staff is committed to helping you create a meaningful tribute that celebrates the life and legacy of your loved one while providing comfort to family and friends.

{features.map((feature, index) => (
{feature}
))}
); }