import { HomeIcon, PasskeyFillIcon } from '@primer/octicons-react' import Card from '~/components/Card' import Link from '~/components/Link' import Add from './add' interface Props { readonly magic: string | undefined } export default function Auth({ magic }: Props) { return (

Basic Authentication

Users are not managed externally. Using OpenID Connect can create a better experience when using Headscale. {' '} Learn more

User Management

You can add, remove, and rename users here.

) }