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

Skinbase Nova

Discover. Create. Inspire.

Explore Trending
) } 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 Trending View Artwork
) }