chore: seminarhof customer project

This commit is contained in:
e2e
2026-06-22 00:08:38 +02:00
commit 48b795b3be
161 changed files with 18517 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
import { Github } from 'lucide-react'
import type { AuthProvider } from './_types'
export const github: AuthProvider = {
id: 'github',
labelKey: 'auth:providers.github',
Icon: Github,
tone: 'default',
envVars: ['GITHUB_CLIENT_ID', 'GITHUB_CLIENT_SECRET'],
login: () => {
window.location.href = '/auth/github/login'
},
}