feat(web): Tailwind 4 + shadcn/ui + ESLint

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-06-03 22:14:12 +02:00
parent 8466ed4d08
commit b7ec4b1041
11 changed files with 3723 additions and 18 deletions
+6
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));
}