import React from 'react' import { usePage } from '@inertiajs/react' import SeoHead from '../../components/seo/SeoHead' import WorldCard from '../../components/worlds/WorldCard' function WorldRail({ title, description, items }) { if (!Array.isArray(items) || items.length === 0) { return null } return (

{title}

{description ?

{description}

: null}
{items.length} worlds
{items.map((world) => )}
) } export default function WorldIndex() { const { props } = usePage() return (

Skinbase Nova 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.

{props.featuredWorld ?
: null}
) }