-
Notifications
You must be signed in to change notification settings - Fork 98
Expand file tree
/
Copy pathindex.html
More file actions
69 lines (58 loc) · 2.92 KB
/
index.html
File metadata and controls
69 lines (58 loc) · 2.92 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="title" content="GitHub Audio">
<meta name="description" content="Listen to music generated by events happening across GitHub">
<meta name="og:title" content="GitHub Audio">
<meta name="og:url" content="https://github.audio">
<meta name="og:image" content="images/logo.png">
<meta name="og:description" content="Listen to music generated by events happening across GitHub">
<meta name="twitter:card" content="summary" />
<meta name="twitter:site" content="https://github.audio" />
<meta name="twitter:title" content="GitHub Audio" />
<meta name="twitter:description" content="Listen to music generated by events happening across GitHub" />
<meta name="twitter:image" content="/images/logo.png" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>GitHub Audio</title>
<!-- DNS prefetch for external domains -->
<link rel="dns-prefetch" href="//fonts.googleapis.com">
<link rel="dns-prefetch" href="//fonts.gstatic.com">
<link rel="dns-prefetch" href="//www.google-analytics.com">
<link rel="mask-icon" href="/images/logo-180.png" color="black">
<link rel="shortcut icon" type="image/png" href="/images/favicon.ico"/>
<!-- Preload critical resources -->
<link rel="preload" href="/images/play-button.svg" as="image" fetchpriority="high">
<link rel="preload" href="/images/logo-60.avif" as="image" fetchpriority="high">
<!-- Google Fonts with optimizations -->
<link rel="preconnect" href="https://fonts.googleapis.com" crossorigin>
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<!-- Preload main script -->
<link rel="modulepreload" href="/src/main.tsx">
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
<!-- Load Inter font after page load to prevent render blocking -->
<script>
window.addEventListener('load', function() {
// Load Inter font asynchronously
const fontLink = document.createElement('link');
fontLink.href = 'https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&display=swap';
fontLink.rel = 'stylesheet';
document.head.appendChild(fontLink);
});
</script>
<!-- Defer Google Analytics to not block rendering -->
<script>
window.addEventListener('load', function() {
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','https://www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-84999786-1', 'auto');
ga('send', 'pageview');
});
</script>
</body>
</html>