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 2ccf7cf commit 34ac354Copy full SHA for 34ac354
1 file changed
src/app/admin/login/page.tsx
@@ -2,6 +2,7 @@
2
3
import { FormEvent, useState } from "react";
4
import { signIn } from "next-auth/react";
5
+import Image from "next/image";
6
import { useRouter } from "next/navigation";
7
8
export default function AdminLoginPage() {
@@ -37,10 +38,13 @@ export default function AdminLoginPage() {
37
38
<main className="flex min-h-screen items-center justify-center bg-[#FFFFFF] px-6 font-sans text-[#2C3A52]">
39
<section className="w-full max-w-md rounded-lg border border-[#C4CAD6] bg-[#F4F5F8] p-8">
40
<div className="mb-8 flex justify-center">
- <img
41
+ <Image
42
src="/full-logo.png"
43
alt="CODEDDEVS Technology LTD"
44
+ width={180}
45
+ height={48}
46
className="h-12 w-auto"
47
+ priority
48
/>
49
</div>
50
0 commit comments