Skip to content

Commit 13080c5

Browse files
author
Uttam Singh
committed
Fixed public folder and logo visibility
1 parent 6532843 commit 13080c5

File tree

1 file changed

+34
-0
lines changed

1 file changed

+34
-0
lines changed

frontend/public/index.html

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
<!doctype html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="UTF-8" />
5+
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
6+
<link rel="icon" type="image/png" href="/public/favicon.png">
7+
<title>FAT-EIBL – Edme Insurance</title>
8+
<style>
9+
:root {
10+
--brand: rgb(175, 157, 165);
11+
--ink: #0d1b2a;
12+
--bg: #ffffff;
13+
--card: #f6f9ff;
14+
}
15+
body { margin:0; font-family: Inter, system-ui, Arial; background:var(--bg); color:var(--ink);}
16+
.appbar { display:flex; align-items:center; gap:10px; padding:12px 16px; border-bottom:1px solid #e6eef9; position:sticky; top:0; background:#fff; }
17+
.appbar img { height:34px; }
18+
.brand { color:var(--brand); font-weight:800; }
19+
a { color: var(--brand); text-decoration:none; }
20+
nav a { margin-right:14px; }
21+
.container { max-width:1100px; margin:20px auto; padding:0 16px; }
22+
.btn { background: var(--brand); color:#fff; border:none; padding:10px 14px; border-radius:10px; cursor:pointer; }
23+
.card { background:var(--card); border:1px solid #e6eef9; border-radius:14px; padding:16px; }
24+
table { width:100%; border-collapse:collapse; }
25+
th, td { border-bottom:1px solid #eef3fb; padding:10px; text-align:left; }
26+
th { background:#f2f7ff; }
27+
.muted { color:#60738a; }
28+
</style>
29+
</head>
30+
<body>
31+
<div id="root"></div>
32+
<script type="module" src="/src/main.jsx"></script>
33+
</body>
34+
</html>

0 commit comments

Comments
 (0)