Init shadcn, Make Sidebar

This commit is contained in:
암냥 2025-09-28 15:50:16 +09:00
commit fbd8fd0c6a
61 changed files with 5835 additions and 138 deletions

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