restructure: move files from qczl-website subfolder to root

This commit is contained in:
lafay
2026-04-28 11:16:57 +08:00
parent c60b5a4a9a
commit 4a7bf5a4a3
30 changed files with 0 additions and 0 deletions

6
src/lib/utils.ts Normal file
View File

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