import React from 'react' import { usePage } from '@inertiajs/react' import SeoHead from '../../components/seo/SeoHead' import ActiveWorldSpotlight from '../../components/worlds/ActiveWorldSpotlight' import WorldFamilyCard from '../../components/worlds/WorldFamilyCard' import WorldsIndexSection from '../../components/worlds/WorldsIndexSection' export default function WorldIndex() { const { props } = usePage() const hasSpotlight = Boolean(props.spotlightWorld) const featuredFallback = !hasSpotlight && Array.isArray(props.featuredWorlds) ? props.featuredWorlds : [] return (

Skinbase Worlds

Curated spaces for seasonal culture, scene moments, and editorial campaigns.

Worlds bundle together artworks, collections, creators, groups, cards, releases, events, challenges, and newsroom context into a single themed destination. They are not filters. They are editorial environments.

{hasSpotlight ? (
) : null} {!hasSpotlight ? ( ) : null} } sourceSurface="worlds_index" sourceDetail="recurring" />
) }