feat: new oauth providers and docs

This commit is contained in:
Bereket Engida
2024-09-01 21:41:17 +03:00
parent 16eb8e7a66
commit 3ac5916da7
117 changed files with 10672 additions and 413 deletions

6
docs/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))
}