This commit is contained in:
2025-08-17 13:21:01 +02:00
commit c988d51438
51 changed files with 5742 additions and 0 deletions

9
components/BadgeRow.tsx Normal file
View File

@@ -0,0 +1,9 @@
export default function BadgeRow({ badges }: { badges: string[] }) {
return (
<div className="badgeRow" role="list" aria-label="Badges">
{badges.map((b, i) => (
<span role="listitem" className={`badge ${i === 2 ? 'primary' : ''}`} key={i}>{b}</span>
))}
</div>
)
}