feat: minimal configuration

This commit is contained in:
2025-06-06 15:12:54 +03:00
parent 751ebe614a
commit 746c8ab0d7
18 changed files with 648 additions and 148 deletions

5
src/lib/cn.ts Normal file
View File

@@ -0,0 +1,5 @@
import clsx, { ClassValue } from "clsx";
import { twMerge } from "tailwind-merge";
export default function cn(...inputs: ClassValue[]) {
return twMerge(clsx(...inputs));
}