first commit

This commit is contained in:
priyanshuvish
2025-09-03 17:02:24 +05:30
parent b0500039d6
commit bf42daef0b
90 changed files with 16642 additions and 0 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));
}