import { Card, CardContent } from "@/components/ui/card"; export default function News() { const articles = [ { image: "https://images.unsplash.com/photo-1581833971358-2c8b550f87b3?ixlib=rb-4.0.3&auto=format&fit=crop&w=400&h=250", date: "March 15, 2024", title: "Planning Your Memorial Service", description: "Guidance on creating a meaningful memorial service that honors your loved one's life and provides comfort to family.", alt: "Memorial garden" }, { image: "https://images.unsplash.com/photo-1573497019940-1c28c88b4f3e?ixlib=rb-4.0.3&auto=format&fit=crop&w=400&h=250", date: "March 10, 2024", title: "Grief Support Resources", description: "Our monthly grief support group meetings provide a safe space for healing and sharing experiences.", alt: "Support group" }, { image: "https://images.unsplash.com/photo-1521737604893-d14cc237f11d?ixlib=rb-4.0.3&auto=format&fit=crop&w=400&h=250", date: "March 5, 2024", title: "Pre-Planning Benefits", description: "Learn about the advantages of pre-planning your funeral arrangements for peace of mind.", alt: "Consultation meeting" } ]; return (

Funeral Latest News

Stay informed about our services, community events, and resources for families.

{articles.map((article, index) => ( {article.alt}
{article.date}

{article.title}

{article.description}

Read More →
))}
); }