-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
29 lines (26 loc) · 845 Bytes
/
Copy pathindex.html
File metadata and controls
29 lines (26 loc) · 845 Bytes
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>veld</title>
<link rel="icon" href="/icons/veld.svg" type="image/svg+xml" />
</head>
<body>
<div id="loading-screen">
<img src="/icons/veld.svg" alt="veld logo" id="loading-screen__logo" />
<img
src="/icons/loading.svg"
alt="loading spinner"
id="loading-screen__spinner"
/>
<p id="loading-state-text">Loading...</p>
<footer id="footer">
<p>© 2025 veld by nulkode.</p>
</footer>
</div>
<img id="logo" src="/icons/veld.svg" alt="Veld Logo" />
<div id="panels-container" class="ui"></div>
<script type="module" src="/src/ui.ts"></script>
</body>
</html>