mirror of
https://github.com/supabase/supabase.git
synced 2026-06-23 09:53:08 +08:00
149 lines
3.3 KiB
JavaScript
149 lines
3.3 KiB
JavaScript
const authProviders = [
|
|
// {
|
|
// name: 'Email',
|
|
// // logo: '/img/libraries/dart-icon.svg',
|
|
// href: '/docs/guides/auth/auth-apple',
|
|
// official: true,
|
|
// supporter: 'Supabase',
|
|
// platform: true,
|
|
// selfHosted: true,
|
|
// },
|
|
// {
|
|
// name: 'Magic Links',
|
|
// // logo: '/img/libraries/dart-icon.svg',
|
|
// href: '/docs/guides/auth/auth-apple',
|
|
// official: true,
|
|
// supporter: 'Supabase',
|
|
// platform: true,
|
|
// selfHosted: true,
|
|
// },
|
|
{
|
|
name: 'Apple',
|
|
// logo: '/img/libraries/dart-icon.svg',
|
|
href: '/docs/guides/auth/auth-apple',
|
|
official: true,
|
|
supporter: 'Supabase',
|
|
platform: true,
|
|
selfHosted: true,
|
|
},
|
|
{
|
|
name: 'Azure',
|
|
// logo: '/img/libraries/dart-icon.svg',
|
|
href: '/docs/guides/auth/auth-azure',
|
|
official: false,
|
|
supporter: 'TBD',
|
|
platform: true,
|
|
selfHosted: true,
|
|
},
|
|
{
|
|
name: 'Bitbucket',
|
|
// logo: '/img/libraries/dart-icon.svg',
|
|
href: '/docs/guides/auth/auth-bitbucket',
|
|
official: true,
|
|
supporter: 'Supabase',
|
|
platform: true,
|
|
selfHosted: true,
|
|
},
|
|
{
|
|
name: 'Discord',
|
|
// logo: '/img/libraries/dart-icon.svg',
|
|
href: '/docs/guides/auth/auth-discord',
|
|
official: true,
|
|
supporter: 'Supabase',
|
|
platform: true,
|
|
selfHosted: true,
|
|
},
|
|
{
|
|
name: 'Facebook',
|
|
// logo: '/img/libraries/dart-icon.svg',
|
|
href: '/docs/guides/auth/auth-facebook',
|
|
official: true,
|
|
supporter: 'Supabase',
|
|
platform: true,
|
|
selfHosted: true,
|
|
},
|
|
{
|
|
name: 'GitHub',
|
|
// logo: '/img/libraries/dart-icon.svg',
|
|
href: '/docs/guides/auth/auth-github',
|
|
official: true,
|
|
supporter: 'Supabase',
|
|
platform: true,
|
|
selfHosted: true,
|
|
},
|
|
{
|
|
name: 'GitLab',
|
|
// logo: '/img/libraries/dart-icon.svg',
|
|
href: '/docs/guides/auth/auth-gitlab',
|
|
official: true,
|
|
supporter: 'Supabase',
|
|
platform: true,
|
|
selfHosted: true,
|
|
},
|
|
{
|
|
name: 'Google',
|
|
// logo: '/img/libraries/dart-icon.svg',
|
|
href: '/docs/guides/auth/auth-google',
|
|
official: true,
|
|
supporter: 'Supabase',
|
|
platform: true,
|
|
selfHosted: true,
|
|
},
|
|
{
|
|
name: 'MessageBird',
|
|
// logo: '/img/libraries/dart-icon.svg',
|
|
href: '/docs/guides/auth/auth-messagebird',
|
|
official: false,
|
|
supporter: 'MessageBird',
|
|
platform: true,
|
|
selfHosted: true,
|
|
},
|
|
{
|
|
name: 'Slack',
|
|
// logo: '/img/libraries/dart-icon.svg',
|
|
href: '/docs/guides/auth/auth-slack',
|
|
official: true,
|
|
supporter: 'Supabase',
|
|
platform: true,
|
|
selfHosted: true,
|
|
},
|
|
{
|
|
name: 'Spotify',
|
|
// logo: '/img/libraries/dart-icon.svg',
|
|
href: '/docs/guides/auth/auth-spotify',
|
|
official: true,
|
|
supporter: 'Supabase',
|
|
platform: true,
|
|
selfHosted: true,
|
|
},
|
|
{
|
|
name: 'Twitter',
|
|
// logo: '/img/libraries/dart-icon.svg',
|
|
href: '/docs/guides/auth/auth-twitter',
|
|
official: true,
|
|
supporter: 'Supabase',
|
|
platform: true,
|
|
selfHosted: true,
|
|
},
|
|
{
|
|
name: 'Twitch',
|
|
// logo: '/img/libraries/dart-icon.svg',
|
|
href: '/docs/guides/auth/auth-twitch',
|
|
official: true,
|
|
supporter: 'Supabase',
|
|
platform: true,
|
|
selfHosted: true,
|
|
},
|
|
{
|
|
name: 'Twilio',
|
|
// logo: '/img/libraries/dart-icon.svg',
|
|
href: '/docs/guides/auth/auth-twilio',
|
|
official: true,
|
|
supporter: 'Supabase',
|
|
platform: true,
|
|
selfHosted: true,
|
|
},
|
|
]
|
|
|
|
export default authProviders
|