-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
index.html
38 lines (32 loc) · 1.58 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<link rel="icon" href="favicon.ico" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="theme-color" content="#000000" />
<link rel="manifest" href="manifest.json" />
<title>skiftOS</title>
<meta property="og:site_name" content="skiftOS">
<meta property="og:title" content="skiftOS">
<meta name="description"
content="skiftOS is a hobby operating system built for learning and for fun targeting the x86 platform. It features a kernel named hjert, a graphical user interface with a compositing window manager, and familiar UNIX utilities.">
<meta property="og:description"
content="skiftOS is a hobby operating system built for learning and for fun targeting the x86 platform. It features a kernel named hjert, a graphical user interface with a compositing window manager, and familiar UNIX utilities.">
<meta property="og:image" content="https://skiftos.org/capture.webp">
<meta property="og:url" content="https://skiftos.org/">
<meta name="twitter:image:alt" content="Screenshot of skiftOS">
<meta name="twitter:card" content="summary_large_image">
<script>
window.goatcounter = {
path: function (p) { return location.host + p }
}
</script>
<script data-goatcounter="https://smnx.goatcounter.com/count" async src="//gc.zgo.at/count.js"></script>
</head>
<body class="bg-gray-950 text-white">
<noscript>You need to enable JavaScript to run this app.</noscript>
<div id="root"></div>
<script type="module" src="/src/main.jsx"></script>
</body>
</html>