import { Head } from '@inertiajs/react';
import TextLink from '@/components/text-link';
import { login } from '@/routes';

export default function Register() {
    return (
        <>
            <Head title="Register" />

            <div className="space-y-6 text-center">
                <p className="text-sm text-muted-foreground">
                    Online registration is not available for this site.
                </p>

                <TextLink href={login()}>Return to log in</TextLink>
            </div>
        </>
    );
}

Register.layout = {
    title: 'Registration unavailable',
    description: 'This site does not support public account creation.',
};
