-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathindex.html
More file actions
41 lines (41 loc) · 1.32 KB
/
index.html
File metadata and controls
41 lines (41 loc) · 1.32 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>OpenPOIs - Point of Interest Explorer</title>
<link rel="icon" type="image/x-icon" href="/src/assets/favicon.ico" />
<link rel="icon" type="image/png" sizes="32x32" href="/src/assets/favicon-32x32.png" />
<link
rel="stylesheet"
href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@24,700,0,0&icon_names=my_location"
/>
</head>
<body>
<div id="app"></div>
<div id="initial-loader" style="
position: fixed; top: 50%; left: 50%;
transform: translate(-50%, -50%);
z-index: 9999;
background: rgba(255,255,255,0.85);
padding: 16px 28px;
border-radius: 8px;
box-shadow: 0 2px 8px rgba(0,0,0,0.15);
font-size: 14px;
display: flex;
align-items: center;
gap: 10px;
">
<div style="
width: 20px; height: 20px;
border: 2px solid #ddd;
border-top-color: #2563eb;
border-radius: 50%;
animation: spin 0.8s linear infinite;
"></div>
Loading...
</div>
<style>@keyframes spin { to { transform: rotate(360deg); } }</style>
<script type="module" src="/src/main.js"></script>
</body>
</html>