Initialized repository for project Integrate React component

Co-authored-by: Tarik Hennen <182493942+tarikhennen@users.noreply.github.com>
This commit is contained in:
v0
2025-09-30 10:17:04 +00:00
commit 879e11825e
26 changed files with 4643 additions and 0 deletions

6
lib/utils.ts Normal file
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))
}