Add new pages and ocmponents using shadcn ui components

This commit is contained in:
2025-06-26 10:00:01 +09:00
parent f55ca657e8
commit e8a003f14e
17 changed files with 1422 additions and 140 deletions

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