forked from PuruVJ/macos-web
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
53 lines (48 loc) · 2 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
49
50
51
52
53
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<link rel="icon" href="/assets/app-icons/finder/32.png" />
<meta name="description" content="MacOS Desktop experience for Web" />
<title>macOS in Svelte</title>
<link rel="apple-touch-icon" href="/assets/app-icons/finder/192.png" sizes="192x192">
<meta name="theme-color" content="#ffffff">
<link rel="dns-prefetch" href="https://fonts.googleapis.com">
<link rel="dns-prefetch" href="https://fonts.gstatic.com">
<link rel="dns-prefetch" href="https://github1s.com">
<link rel="preconnect" crossorigin="anonymous" href="https://fonts.googleapis.com">
<link rel="preconnect" crossorigin="anonymous" href="https://fonts.gstatic.com">
<link rel="preconnect" crossorigin="anonymous" href="https://github1s.com">
<link
crossorigin="anonymous"
href="https://fonts.googleapis.com/css2?family=Inter:wght@200;300;350;400;500;600;700&display=swap"
rel="stylesheet"
/>
<meta property="og:title" content="macOS in Svelte" />
<meta property="og:description" content="A painting of macOS Big Sur in HTML, CSS and JS" />
<meta property="og:image" content="https://macos.now.sh/assets/cover-image.png" />
<meta property="og:url" content="https://macos.now.sh" />
<meta name="twitter:card" content="summary_large_image" />
<link rel="prefetch" href="/assets/sounds/mac-startup-sound.mp3" />
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.ts"></script>
</body>
<script type="module">
if (import.meta.env.PROD) {
(function (c, l, a, r, i, t, y) {
c[a] =
c[a] ||
function () {
(c[a].q = c[a].q || []).push(arguments);
};
t = l.createElement(r);
t.async = 1;
t.src = 'https://www.clarity.ms/tag/' + i;
y = l.getElementsByTagName(r)[0];
y.parentNode.insertBefore(t, y);
})(window, document, 'clarity', 'script', '5gipf5fh8x');
}
</script>
</html>