-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
46 lines (41 loc) · 2.19 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
<!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>
<!-- Theme color -->
<meta name="theme-color" content="#000000" />
<meta name="msapplication-navbutton-color" content="#000000" />
<meta name="apple-mobile-web-app-status-bar-style" content="#000000" />
<!-- SEO -->
<meta name="audience" lang="en" content="all" />
<meta name="topic" content="Application, Audio, Visualizer, PWA">
<meta name="summary" content="Portfolio from Simon Reinisch">
<meta name="expires" content="7 days" />
<meta name="revisit-after" content="7 days" />
<meta name="page-topic" content="Audio Spectrum Analyzer" />
<meta name="copyright" content="Simon Reinisch">
<meta name="owner" content="Simon Reinisch">
<meta name="author" content="Simon Reinisch">
<meta name="robots" content="index, follow" />
<meta name="description" content="Simple audio spectrum analyzer, can analyze audio input from the microphone as well as audio files." />
<meta name="keywords" content="audio, spectrum, visualizer, analyzer, pwa, web-app, fft" />
<!-- Open Graph -->
<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="Simple audio spectrum analyzer, can analyze audio input from the microphone as well as audio files." />
<meta property="og:description" content="Portfolio of an software architect with a drive for perfection." />
<!-- Icons -->
<link rel="icon" href="/favicon.ico" sizes="32x32">
<link rel="icon" href="/favicon.svg" sizes="any" type="image/svg+xml">
<link rel="apple-touch-icon" href="/apple-touch-icon.png">
<!-- Analytics -->
<script defer src="https://numai.reinisch.io/script.js" data-website-id="87a8f46b-ea2c-4630-a42e-05aa89a05de4"></script> </head>
<body>
<div id="app"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>