This commit is contained in:
2026-02-04 17:59:42 +08:00
parent aa63938aea
commit 3b60478036
21 changed files with 1805 additions and 912 deletions

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