-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathindex.html
37 lines (31 loc) · 1.5 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
<!DOCTYPE html>
<html lang="en">
<head>
<title>NTS-web | Korg NTS-1 Web editor</title>
<meta name="description" content="Korg NTS-1 Web controller" />
<meta charset="utf-8" />
<meta http-equiv="Content-Security-Policy" content="script-src 'self' 'unsafe-inline';"/>
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="theme-color" content="#212121" />
<meta name="twitter:card" content="summary" />
<meta name="twitter:site" content="@oscarrc_web" />
<meta name="twitter:title" content="NTS-web" />
<meta name="twitter:description" content="A web editor and sequencer for the Korg NTS-1" />
<meta name="twitter:image" content="/static/media/screenshot.png" />
<meta property="og:url" content="/" />
<meta property="og:type" content="website" />
<meta property="og:title" content="NTS-web" />
<meta property="og:description" content="A web editor and sequencer for the Korg NTS-1" />
<meta property="og:image" content="/static/media/screenshot.png" />
<link rel="preconnect" href="/">
<link rel="icon" href="/favicon.ico" />
<link rel="apple-touch-icon" href="/static/media/icons/icon192.png" />
<link rel="assetlinks.json" href="/.well-known/assetlinks.json">
</head>
<body>
<noscript>You need to enable JavaScript to run this app.</noscript>
<div id="root"></div>
<script src="/static/js/input-knobs.js"></script>
<script type="module" src="/src/index.jsx"></script>
</body>
</html>