added shadcn setup and base style

This commit is contained in:
2025-08-12 12:45:24 -04:00
parent dd07e04f7d
commit 2cd6290da9
5 changed files with 265 additions and 0 deletions

6
ui/src/lib/utils.js Normal file
View File

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