import React from 'react' const FALLBACK = 'https://files.skinbase.org/default/missing_lg.webp' export default function HomeHero({ artwork }) { if (!artwork) { return (

Discover Digital Art

Wallpapers, skins & digital creations from a global community.

Explore Upload
) } const src = artwork.thumb_lg || artwork.thumb || FALLBACK return (
{/* Background image */} {artwork.title} { e.currentTarget.src = FALLBACK }} /> {/* Gradient overlay */}
{/* Content */}

Featured Artwork

{artwork.title}

by {artwork.author}

Explore Upload View Artwork
) }