initial commit

This commit is contained in:
Muhtadee Taron
2025-07-02 21:28:19 +06:00
parent 9d81907550
commit ac49576b9b
15 changed files with 6599 additions and 2 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))
}