Add Tailwind v4 and shadcn/ui baseline components

This commit is contained in:
2026-04-23 21:07:44 +04:00
parent abef71e4ab
commit 46001192be
17 changed files with 783 additions and 439 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))
}