import React from 'react' import ArtworkGalleryGrid from '../../components/artwork/ArtworkGalleryGrid' export default function HomeTrendingForYou({ items, preferences }) { if (!Array.isArray(items) || items.length === 0) return null const topTag = preferences?.top_tags?.[0] const heading = 'Picked For You' const subheading = topTag ? `Fresh recommendations informed by your recent interest in #${topTag}.` : 'A live preview of your personalized discovery feed.' const link = '/discover/for-you' return (

Personalized feed

{heading}

{subheading}

Open full feed →
) }