import { OrganizationIcon, PasskeyFillIcon } from '@primer/octicons-react' import Card from '~/components/Card' import Link from '~/components/Link' import { HeadplaneContext } from '~/utils/config/headplane' import Add from './add' interface Props { readonly oidc: NonNullable readonly magic: string | undefined } export default function Oidc({ oidc, magic }: Props) { return (

OpenID Connect

Users are managed through your {' '} OpenID Connect provider {'. '} Groups and user information do not automatically sync. {' '} Learn more

User Management

You can still add users manually, however it is recommended that you manage users through your OIDC provider.

) }