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 23f8374 commit f7aa2c0Copy full SHA for f7aa2c0
frontend/src/assets/logo.png.png
9.88 KB
frontend/src/pages/Login.jsx
@@ -1,13 +1,23 @@
1
import React from "react";
2
+import logo from "frondend/src/assets/logo.png"; //
3
4
export default function Login() {
5
return (
- <div style={{
6
- textAlign: "center",
7
- marginTop: "100px",
8
- fontFamily: "Arial, sans-serif",
9
- color: "#0047AB"
10
- }}>
+ <div
+ style={{
+ textAlign: "center",
+ marginTop: "80px",
+ fontFamily: "Arial, sans-serif",
11
+ color: "#0047AB",
12
+ }}
13
+ >
14
+ {/* ✅ Logo */}
15
+ <img
16
+ src={logo}
17
+ alt="Edme Insurance Logo"
18
+ style={{ width: "120px", height: "auto", marginBottom: "20px" }}
19
+ />
20
+
21
<h1>Welcome to FAT-EIBL</h1>
22
<p>Finance Audit Tracker – Edme Insurance Brokers Limited</p>
23
</div>
0 commit comments