import { Card, CardContent } from "@/components/ui/card"; export default function WhenSomeoneDies() { const guidanceCards = [ { image: "https://images.unsplash.com/photo-1544731612-de7f96afe55f?ixlib=rb-4.0.3&auto=format&fit=crop&w=400&h=250", title: "First Steps", description: "Contact us immediately. We're available 24/7 to help guide you through the initial arrangements.", alt: "Funeral service ceremony" }, { image: "https://images.unsplash.com/photo-1571019613454-1cb2f99b2d8b?ixlib=rb-4.0.3&auto=format&fit=crop&w=400&h=250", title: "Making Arrangements", description: "Our experienced staff will help you plan a meaningful service that honors your loved one's memory.", alt: "Funeral home interior" }, { image: "https://images.unsplash.com/photo-1593113598332-cd288d649433?ixlib=rb-4.0.3&auto=format&fit=crop&w=400&h=250", title: "Final Services", description: "We provide complete funeral and burial services with dignity, respect, and attention to detail.", alt: "Cemetery grounds" } ]; return (

When Someone Dies

We understand this is a difficult time. Here's what you need to know to help guide you through the process.

{guidanceCards.map((card, index) => ( {card.alt}

{card.title}

{card.description}

Learn More →
))}
); }