This repository was archived by the owner on Nov 11, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
41 lines (41 loc) · 1.35 KB
/
index.html
File metadata and controls
41 lines (41 loc) · 1.35 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" />
<link
rel="icon"
type="image/svg+xml"
media="(prefers-color-scheme: light)"
href="/src/favicon_light.svg"
/>
<link
rel="icon"
type="image/svg+xml"
media="(prefers-color-scheme: dark)"
href="/src/favicon_dark.svg"
/>
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta
name="description"
content="Hire a Flexible Superstar In Record Time"
/>
<meta name="copyright" content="Othership Ltd." />
<title>Othership Flex</title>
</head>
<body class="font-inter antialiased bg-white text-gray-900 tracking-tight">
<noscript>You need to enable JavaScript to run this app.</noscript>
<script>
if (localStorage.getItem("sidebar-expanded") == "true") {
document
.querySelector("body")
.classList.add("sidebar-expanded");
} else {
document
.querySelector("body")
.classList.remove("sidebar-expanded");
}
</script>
<div id="root"></div>
<script type="module" src="/src/main.jsx"></script>
</body>
</html>