feat (auth): implement login page

This commit is contained in:
Abizrh
2025-08-07 14:52:55 +07:00
parent 8854f017b8
commit b294d0095b
3 changed files with 23 additions and 12 deletions

No files matched your search

+7
View File
@@ -0,0 +1,7 @@
import type { ClassValue } from 'clsx'
import { clsx } from 'clsx'
import { twMerge } from 'tailwind-merge'
export function cn(...inputs: ClassValue[]) {
return twMerge(clsx(inputs))
}