24 lines
1.1 KiB
JavaScript
24 lines
1.1 KiB
JavaScript
import React from 'react'
|
|
import WorldChallengeArtworkCard from './WorldChallengeArtworkCard'
|
|
|
|
export default function WorldChallengeWinnersPanel({ section, challengeId = null }) {
|
|
const items = Array.isArray(section?.items) ? section.items : (section?.item ? [section.item] : [])
|
|
|
|
if (items.length === 0) {
|
|
return null
|
|
}
|
|
|
|
return (
|
|
<section className="mt-10 rounded-[28px] border border-white/10 bg-white/[0.03] p-5">
|
|
<div className="mb-5">
|
|
<h2 className="text-2xl font-semibold tracking-[-0.03em] text-white">{section.title || 'Challenge winner'}</h2>
|
|
{section.description ? <p className="mt-2 max-w-3xl text-sm leading-6 text-slate-400">{section.description}</p> : null}
|
|
</div>
|
|
{items.length === 1 ? <WorldChallengeArtworkCard item={items[0]} featured sectionKey="challenge_winners" challengeId={challengeId} /> : (
|
|
<div className="grid gap-4 md:grid-cols-2 xl:grid-cols-3">
|
|
{items.map((item) => <WorldChallengeArtworkCard key={item.id} item={item} featured sectionKey="challenge_winners" challengeId={challengeId} />)}
|
|
</div>
|
|
)}
|
|
</section>
|
|
)
|
|
} |