import React from 'react' export default function CollectionEmptyState({ isOwner, createUrl }) { const smartUrl = createUrl ? `${createUrl}?mode=smart` : null return (

{isOwner ? 'Create your first collection' : 'No public collections yet'}

{isOwner ? 'Collections turn your gallery into intentional showcases. Build them manually or let smart rules keep them fresh from your own artwork library.' : 'This creator has not published any collections.'}

{isOwner && createUrl ? (
Create Manual Collection Create Smart Collection
) : null} {isOwner ?

Examples: Featured wallpapers, best of 2026, cyberpunk studies, blue neon universe

: null}
) }