Update project configuration and dependencies: add Tailwind CSS support, update .gitignore, and enhance TypeScript configuration.

This commit is contained in:
Matthias
2026-04-21 09:04:25 +02:00
parent 7e94269f2b
commit 54590826c7
9 changed files with 4751 additions and 14 deletions

6
src/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))
}