import React from 'react' import ArtworkGalleryGrid from '../../components/artwork/ArtworkGalleryGrid' export default function HomeMedalHighlights({ title, href = null, items, description = '' }) { if (!Array.isArray(items) || items.length === 0) return null return (

{title}

{description ?

{description}

: null}
{href ? ( See all → ) : null}
) }