-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
55 lines (46 loc) · 2.21 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
54
55
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Audio Spectrum Analyzer</title>
<!-- Chrome, Firefox OS and Opera -->
<meta name="theme-color" content="#000000" />
<!-- Windows Phone -->
<meta name="msapplication-navbutton-color" content="#000000" />
<!-- iOS Safari -->
<meta name="apple-mobile-web-app-status-bar-style" content="#000000" />
<!-- Favicons -->
<link rel="icon" href="favicon.svg" />
<link rel="fluid-icon" href="favicon.svg" />
<link rel="apple-touch-icon" href="favicon.svg" />
<!-- SEO -->
<meta name="audience" lang="en" content="all" />
<meta name="expires" content="7 days" />
<meta name="robots" content="follow" />
<meta name="revisit-after" content="7 days" />
<meta name="page-topic" content="Audio Spectrum Analyzer" />
<meta name="copyright" content="Simon Reinisch" />
<meta name="author" content="Simon Reinisch" />
<meta name="description" content="" />
<meta name="keywords" content="audio, fft, spectrum, analyzer, pwa, web-app" />
<!-- Open Graph / Facebook -->
<meta property="og:image" content="favicon.co" />
<meta property="og:type" content="website" />
<meta property="og:url" content="https://spectrum.reinisch.io" />
<meta property="og:site_name" content="Audio Spectrum Analyzer" />
<meta property="og:title" content="Audio Spectrum Analyzer" />
<meta property="og:description" content="A small audio spectrum visualizer." />
<!-- Twitter -->
<meta property="twitter:url" content="https://spectrum.reinisch.io">
<meta property="twitter:title" content="Audio Spectrum Analyzer">
<meta property="twitter:description" content="A small audio spectrum visualizer.">
<meta property="twitter:image" content="favicon.png">
<!-- Analytics -->
<script async src="https://ackee.reinisch.io/tracker.js" data-ackee-server="https://ackee.reinisch.io" data-ackee-domain-id="b0c5af46-63e4-46ba-afb0-95b2cea6072b" data-ackee-opts='{"detailed": true}'></script>
</head>
<body>
<div id="app"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>