update layout

This commit is contained in:
Kenta420 2024-01-24 11:41:58 +07:00
parent 84f18b6141
commit 725d41f61f
17 changed files with 1859 additions and 408 deletions

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