-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathindex.html
More file actions
24 lines (18 loc) · 711 Bytes
/
index.html
File metadata and controls
24 lines (18 loc) · 711 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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" href="icon.png" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Easyeditor</title>
</head>
<body style="margin:0;padding:0;background:#1e1e2e">
<div id="root">
<div id="app-loader" style="display:flex;align-items:center;justify-content:center;height:100vh;background:#1e1e2e;color:#cdd6f4;font-family:system-ui,sans-serif;font-size:14px;gap:10px">
<img src="/32x32.png" alt="" width="32" height="32" onerror="this.style.display='none'"/>
<span>Loading EasyEditor...</span>
</div>
</div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>