This commit is contained in:
2025-12-31 01:09:34 +07:00
commit 772e84c761
25 changed files with 1774 additions and 0 deletions

7
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));
}