This commit is contained in:
eric
2025-12-10 01:15:14 +08:00
parent fb180c4d65
commit 91247745dd
94 changed files with 4380 additions and 26663 deletions

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