chore: seminarhof customer project

This commit is contained in:
e2e
2026-07-10 23:12:46 +02:00
commit 50a4d93100
188 changed files with 20779 additions and 0 deletions

View File

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