aboutsummaryrefslogtreecommitdiffstats
path: root/packages/web/app/signin/page.tsx
blob: 804c97a61e495db42220ba4db11898d7a674c243 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
import { PackageOpen } from "lucide-react";
import SignInForm from "./components/SignInForm";
import { redirect } from "next/dist/client/components/navigation";
import { getServerAuthSession } from "@/server/auth";

export default async function SignInPage() {
  const session = await getServerAuthSession();
  if (session) {
    redirect("/");
  }

  return (
    <div className="grid min-h-screen grid-rows-6 justify-center">
      <div className="row-span-2 flex w-96 items-center justify-center space-x-2">
        <span>
          <PackageOpen size="60" className="" />
        </span>
        <p className="text-6xl">Hoarder</p>
      </div>
      <div className="row-span-4 px-3">
        <SignInForm />
      </div>
    </div>
  );
}