Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 10 additions & 1 deletion app/page.tsx
Original file line number Diff line number Diff line change
@@ -1,10 +1,19 @@
import SignIn from "@/components/login/sign-in";
import Image from "next/image";



/**
* Render a full-screen, centered container that displays the SignIn component.
*
* @returns A JSX element containing a full-height centered wrapper with the `SignIn` component.
*/
export default async function Home() {
return (
<div className="flex justify-center items-center h-screen">
<SignIn />
</div>


);
}
}
Loading