система инит

This commit is contained in:
Artyom Tsyrulnikov
2025-07-15 06:42:04 +03:00
parent 2100fcd249
commit 6bd5bba15a
22 changed files with 7273 additions and 257 deletions

6
src/lib/utils.ts Normal file
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))
}