feat: add TechStack component to showcase technology and tools used

This commit is contained in:
Space-Banane
2026-03-22 15:41:56 +01:00
parent b7ffff499e
commit d7a4bc0b54
3 changed files with 103 additions and 0 deletions

7
src/components/cn.ts Normal file
View File

@@ -0,0 +1,7 @@
import { ClassValue } from "clsx";
import { twMerge } from "tailwind-merge";
import clsx from "clsx";
export function cn(...inputs: ClassValue[]) {
return twMerge(clsx(inputs));
}