first commit
This commit is contained in:
18
app/page.tsx
Normal file
18
app/page.tsx
Normal file
@@ -0,0 +1,18 @@
|
||||
"use client";
|
||||
import LoginForm from "@/ui/forms/LoginForm";
|
||||
|
||||
export default function Home() {
|
||||
return (
|
||||
<div
|
||||
style={{
|
||||
minHeight: "100vh",
|
||||
display: "flex",
|
||||
alignItems: "center",
|
||||
backgroundColor: "#f8fafc",
|
||||
paddingTop: 4,
|
||||
}}
|
||||
>
|
||||
<LoginForm />
|
||||
</div>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user