feat(client): setup tailwindcss and shadcn

Signed-off-by: Noa Virellia <noa@requiem.garden>
This commit is contained in:
2025-12-19 15:31:27 +08:00
committed by Asai Neko
parent f5a811a6a2
commit 2148e47b10
9 changed files with 271 additions and 5 deletions

7
client/src/lib/utils.ts Normal file
View File

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