-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
48 lines (48 loc) · 1.49 KB
/
index.html
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
42
43
44
45
46
47
48
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/vite.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="theme-color" content="#141414" />
<meta name="description" content="CodeShare: save and share your codes" />
<meta
name="image"
property="og:image"
content="https://raw.githubusercontent.com/sucodelarangela/codeshare/main/public/ogimage.png"
/>
<title>codeshare</title>
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Inter&display=swap"
rel="stylesheet"
/>
<link
href="https://fonts.googleapis.com/css2?family=Roboto+Mono&display=swap"
rel="stylesheet"
/>
<link
href="https://fonts.googleapis.com/css2?family=Rubik+80s+Fade&display=swap"
rel="stylesheet"
/>
<link rel="stylesheet" href="./src/styles/loader.css" />
</head>
<body>
<div id="root">
<div class="loader">
<span></span>
<span></span>
<span></span>
<span></span>
</div>
</div>
<script>
const splash = document.querySelector(".loader");
splash.addEventListener("DOMContentLoaded", () => {
splash.style.display = "none";
});
</script>
<script type="module" src="/src/main.jsx"></script>
</body>
</html>