blob: afe63dd394761deab4561d22a7d760574303d31c (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
import { Brain } from "lucide-react";
import SignInForm from "./components/SignInForm";
export default async function SignInPage() {
// TODO Add support for email and credential signin form
return (
<div className="flex min-h-screen flex-col items-center justify-center">
<div className="flex space-x-2">
<span>
<Brain size="30" className="h-full" />
</span>
<span className="text-4xl">Remember</span>
</div>
<div className="mt-20 flex w-96 flex-col items-center rounded-xl border border-gray-300 p-20">
<SignInForm />
</div>
</div>
);
}
|