install shadcdn and move login dialog to a separate component

This commit is contained in:
Viktor Barzin 2025-06-15 13:49:34 +00:00
parent 4c7fe8927b
commit a8ee95b9d9
No known key found for this signature in database
GPG key ID: 4056458DBDBF8863
13 changed files with 1141 additions and 73 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))
}