import { Button } from "@/components/ui/button"; export default function Services() { const services = [ { image: "https://images.unsplash.com/photo-1578662996442-48f60103fc96?ixlib=rb-4.0.3&auto=format&fit=crop&w=400&h=300", title: "Traditional Funeral", description: "Full-service traditional funeral with viewing, ceremony, and burial arrangements.", alt: "Traditional funeral service" }, { image: "https://images.unsplash.com/photo-1572276596237-5db2c3e16c5d?ixlib=rb-4.0.3&auto=format&fit=crop&w=400&h=300", title: "Memorial Service", description: "Celebration of life ceremony focusing on memories and legacy of your loved one.", alt: "Memorial garden" }, { image: "https://images.unsplash.com/photo-1612349317150-e413f6a5b16d?ixlib=rb-4.0.3&auto=format&fit=crop&w=400&h=300", title: "Cremation Services", description: "Dignified cremation services with memorial options to honor your loved one.", alt: "Funeral director" } ]; return (

Funeral Homes Offer a Service

Our comprehensive services are designed to support families during their time of need with compassion and professionalism.

{services.map((service, index) => (
{service.alt}

{service.title}

{service.description}

))}
); }