import React from 'react' /** * Upload CTA banner — shown at the bottom of both guest and logged-in homepages. */ export default function HomeCTA({ isLoggedIn }) { const uploadHref = isLoggedIn ? '/upload' : '/login?redirect=/upload' return (
{/* Decorative blobs */}

Join the community

Ready to share your creativity?

Upload your artworks, wallpapers, and skins to reach thousands of enthusiasts around the world.

) }