Skip to content

Commit d09b8dd

Browse files
committed
Add logo
1 parent 91cbfe5 commit d09b8dd

File tree

2 files changed

+9
-3
lines changed

2 files changed

+9
-3
lines changed

frontend/public/PeerPrepLogo.png

104 KB
Loading
Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,16 @@
11
import LoginForm from "@/app/components/auth/LoginComponent";
2+
import Image from "next/image";
23

34
export default function LoginPage() {
45
return (
5-
<div className="h-screen flex items-center justify-center">
6-
<img src="" alt="" />
7-
<LoginForm />
6+
<div className="h-screen flex flex-col items-center justify-center">
7+
<Image
8+
src="/PeerPrepLogo.png"
9+
alt="PeerprepLogo"
10+
width={200}
11+
height={200}
12+
/>
13+
<LoginForm/>
814
</div>
915
);
1016
}

0 commit comments

Comments
 (0)