const IconBeaker = () => ( ); const IconDocs = () => ( ); const IconCode = () => ( ); const ActionButton = ({ title, Icon, href, className = '' }) => ( ); export default function GalleryItem({ item }) { return (
{item.title}

{item.description}

{item.docsUrl && ( )} {item.sourceUrl && ( )} {/* Maybe: Blog post */}
); }