first commit

This commit is contained in:
Daniil
2025-12-22 19:34:28 +03:00
parent a5444c17ec
commit 8b4836fd61
18 changed files with 1846 additions and 83 deletions

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