First commit with next js.

This commit is contained in:
charles-gauthereau
2024-11-03 11:30:44 +01:00
parent c3dbdd8833
commit 68c41a7929
18 changed files with 8198 additions and 0 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))
}