feat: initial commit

This commit is contained in:
Timo
2026-03-17 10:51:44 +01:00
parent 410602f8c5
commit 5b84001c1e
6 changed files with 4658 additions and 119 deletions

6
lib/utils.ts Normal file
View File

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