import { Card, CardContent } from "@/components/ui/card"; export default function Staff() { const staff = [ { image: "https://images.unsplash.com/photo-1559839734-2b71ea197ec2?ixlib=rb-4.0.3&auto=format&fit=crop&w=300&h=300", name: "Sarah Johnson", title: "Funeral Director", description: "Licensed funeral director with 15 years of experience serving families with compassion." }, { image: "https://images.unsplash.com/photo-1472099645785-5658abf4ff4e?ixlib=rb-4.0.3&auto=format&fit=crop&w=300&h=300", name: "Michael Davis", title: "Assistant Director", description: "Dedicated to helping families through difficult times with personalized care and attention." }, { image: "https://images.unsplash.com/photo-1494790108755-2616b612b977?ixlib=rb-4.0.3&auto=format&fit=crop&w=300&h=300", name: "Emily Rodriguez", title: "Grief Counselor", description: "Licensed counselor specializing in grief support and family counseling services." }, { image: "https://images.unsplash.com/photo-1507003211169-0a1dd7228f2d?ixlib=rb-4.0.3&auto=format&fit=crop&w=300&h=300", name: "Robert Wilson", title: "Operations Manager", description: "Ensures all arrangements are handled with the highest level of professionalism and care." } ]; return (

Recent Funeral Obituaries

Our dedicated staff brings years of experience and genuine compassion to every family we serve.

{staff.map((member, index) => ( {member.name}

{member.name}

{member.title}

{member.description}

))}
); }