feat: initial commit

This commit is contained in:
2026-04-07 11:30:38 +05:00
parent da46f84ab8
commit 9d82b73e58
6 changed files with 5933 additions and 127 deletions
+3 -3
View File
@@ -1,6 +1,6 @@
import { type ClassValue, clsx } from "clsx";
import { twMerge } from "tailwind-merge";
import { clsx, type ClassValue } from "clsx"
import { twMerge } from "tailwind-merge"
export function cn(...inputs: ClassValue[]) {
return twMerge(clsx(inputs));
return twMerge(clsx(inputs))
}