initial commit

This commit is contained in:
Siwat Sirichai 2025-06-21 12:09:47 +07:00
commit a606796d9e
26 changed files with 2606 additions and 0 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))
}