create product

This commit is contained in:
hamid zarghami
2025-09-22 12:24:21 +03:30
parent a18c52358b
commit 2a4608e258
34 changed files with 2402 additions and 17 deletions
+6
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))
}