-
-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathindex.html
More file actions
24 lines (24 loc) · 965 Bytes
/
index.html
File metadata and controls
24 lines (24 loc) · 965 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta
name="description"
content="A little JavaScript application that wants to help learning the bandoneon."
/>
<meta name="author" content="Nico Kaiser" />
<link rel="icon" href="/favicon.ico" sizes="48x48" />
<link rel="icon" href="/favicon.svg" sizes="any" type="image/svg+xml" />
<link rel="apple-touch-icon" href="/apple-touch-icon-180x180.png" />
<meta name="theme-color" media="(prefers-color-scheme: light)" content="#fff" />
<meta name="theme-color" media="(prefers-color-scheme: dark)" content="#171717" />
<title>Bandoneon.app</title>
</head>
<body
class="min-h-screen bg-white text-neutral-950 antialiased dark:bg-neutral-900 dark:text-neutral-50"
>
<div id="app"></div>
<script type="module" src="/src/main.ts"></script>
</body>
</html>