feat(home): display curator in upcoming specials

This commit is contained in:
Hördle Bot
2025-11-23 02:29:23 +01:00
parent 2a38bce02c
commit b294a3a8e6

View File

@@ -70,6 +70,7 @@ export default async function Home() {
Coming soon: {upcomingSpecials.map(s => ( Coming soon: {upcomingSpecials.map(s => (
<span key={s.id} style={{ marginLeft: '0.5rem' }}> <span key={s.id} style={{ marginLeft: '0.5rem' }}>
{s.name} ({s.launchDate?.toLocaleDateString()}) {s.name} ({s.launchDate?.toLocaleDateString()})
{s.curator && <span style={{ fontStyle: 'italic', marginLeft: '0.25rem' }}>Curated by {s.curator}</span>}
</span> </span>
))} ))}
</div> </div>