🏷️ added tags system

This commit is contained in:
RJ
2025-11-19 13:25:36 +02:00
parent ec37c33afa
commit 3136131182
14 changed files with 689 additions and 15 deletions

View File

@@ -0,0 +1,20 @@
interface TagBadgeProps {
count: number;
className?: string;
}
export function TagBadge({ count, className = '' }: TagBadgeProps) {
return (
<span
className={`
inline-flex items-center justify-center
px-2 py-1 font-mono text-xs font-bold
bg-cyan-900 border border-cyan-700
text-cyan-300
${className}
`}
>
{count}
</span>
);
}