🖼️ added images support

- Should investigate how to resize the image from .md specs
This commit is contained in:
RJ
2025-11-21 16:15:15 +02:00
committed by Rares J
parent 6155a541f9
commit a039528fb3
26 changed files with 871 additions and 274 deletions

View File

@@ -1,6 +1,6 @@
interface TagBadgeProps {
count: number;
className?: string;
count: number
className?: string
}
export function TagBadge({ count, className = '' }: TagBadgeProps) {
@@ -16,5 +16,5 @@ export function TagBadge({ count, className = '' }: TagBadgeProps) {
>
{count}
</span>
);
)
}