peer-at-code-web/app/(auth)/sign-in/page.tsx
2023-07-05 18:48:59 +02:00

12 lines
289 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">Connexion</h2>
<UserAuthForm />
</div>
</>
);
}