peer-at-code-web/app/(auth)/sign-up/page.tsx
2023-07-19 12:32:39 +02:00

12 lines
296 B
TypeScript

import UserAuthForm from '@/components/ui/UserAuthForm';
export default function Page() {
return (
<>
<div className="flex flex-col justify-start space-y-4">
<h2 className="mx-auto text-xl font-bold">Créer un compte</h2>
<UserAuthForm />
</div>
</>
);
}