package updates, minor bug fixes, stack items, background animation fixes

This commit is contained in:
2026-06-06 12:15:01 +02:00
parent 65b9184a22
commit f5e8b87846
21 changed files with 775 additions and 359 deletions

View File

@@ -125,6 +125,30 @@ const STACK_META: Record<string, { label: string; icon?: SvglIcon }> = {
dark: "https://svgl.app/library/neon.svg",
},
},
typescript: {
label: "TypeScript",
icon: {
light: "https://svgl.app/library/typescript.svg",
dark: "https://svgl.app/library/typescript.svg",
},
},
javafx: { label: "JavaFX" },
x11: { label: "X11" },
zig: {
label: "Zig",
icon: {
light: "https://svgl.app/library/zig.svg",
dark: "https://svgl.app/library/zig.svg",
},
},
libghostty: { label: "libghostty" },
zod: {
label: "Zod",
icon: {
light: "https://svgl.app/library/zod.svg",
dark: "https://svgl.app/library/zod.svg",
},
},
};
export function StackBadge({ item }: { item: string }) {