import React from 'react' export default function HomeWorldSpotlight({ world }) { if (!world) { return null } return (
{world.cover_url ? {world.title} : null}
Homepage spotlight {world.badge_label ? {world.badge_label} : null}

{world.title}

{world.tagline ?

{world.tagline}

: null} {world.summary ?

{world.summary}

: null}
{world.cta_label || 'Explore world'}
World Theme
{world.theme?.label || 'Editorial world'}
{world.timeframe_label ?
{world.timeframe_label}
: null}
) }