import React from 'react' import ArtworkGalleryGrid from '../../components/artwork/ArtworkGalleryGrid' /** * Personalized trending: artworks matching user's top tags, sorted by trending score. * Label and browse link adapt to the user's first top tag. */ export default function HomeTrendingForYou({ items, preferences }) { if (!Array.isArray(items) || items.length === 0) return null const topTag = preferences?.top_tags?.[0] const heading = topTag ? `🎯 Trending in #${topTag}` : '🎯 Trending For You' const link = topTag ? `/browse?tags=${encodeURIComponent(topTag)}&sort=trending` : '/discover/trending' return (

{heading}

See all →
) }