{item.title} by {item.author}
)
}
/**
* Because You Like {tag}: fresh or trending artworks for the user's top tag.
* Only rendered when by_categories data is available and a top tag is known.
*/
export default function HomeBecauseYouLike({ items, preferences }) {
const topTag = preferences?.top_tags?.[0]
if (!Array.isArray(items) || items.length === 0 || !topTag) return null
return (