This commit is contained in:
2025-08-22 17:31:25 +09:00
parent 122d639cfb
commit 75e05dc5ab
24 changed files with 2203 additions and 56 deletions

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