We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 91cbfe5 commit d09b8ddCopy full SHA for d09b8dd
frontend/public/PeerPrepLogo.png
104 KB
frontend/src/app/auth/login/page.tsx
@@ -1,10 +1,16 @@
1
import LoginForm from "@/app/components/auth/LoginComponent";
2
+import Image from "next/image";
3
4
export default function LoginPage() {
5
return (
- <div className="h-screen flex items-center justify-center">
6
- <img src="" alt="" />
7
- <LoginForm />
+ <div className="h-screen flex flex-col items-center justify-center">
+ <Image
8
+ src="/PeerPrepLogo.png"
9
+ alt="PeerprepLogo"
10
+ width={200}
11
+ height={200}
12
+ />
13
+ <LoginForm/>
14
</div>
15
);
16
}
0 commit comments