init

init

init
This commit is contained in:
afiqzudinhadi 2025-06-05 13:45:41 +08:00
commit 7335ea2581
11 changed files with 11375 additions and 0 deletions

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