-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
35 lines (35 loc) · 1.85 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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" href="/favicon.ico" />
<link rel="manifest" href="/manifest.json" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta
name="description"
content="bpm-tap is an extremely simple web app for tapping out the tempo of a song. It is designed to be used as a PWA on a phone, with the tempo being tapped out by tapping the screen. The tempo is displayed in real-time and can be reset by not tapping for 2 seconds."
/>
<meta property="og:title" content="bpm tap" />
<meta property="og:type" content="website" />
<meta property="og:url" content="https://bpm-tap-0.netlify.app/" />
<meta
property="og:description"
content="bpm-tap is an extremely simple web app for tapping out the tempo of a song. It is designed to be used as a PWA on a phone, with the tempo being tapped out by tapping the screen. The tempo is displayed in real-time and can be reset by not tapping for 2 seconds."
/>
<meta property="twitter:card" content="summary" />
<meta property="twitter:title" content="bpm tap" />
<meta property="twitter:site" content="@ryanvoitiskis" />
<meta property="twitter:creator" content="@ryanvoitiskis" />
<meta
property="twitter:description"
content="bpm-tap is an extremely simple web app for tapping out the tempo of a song. It is designed to be used as a PWA on a phone, with the tempo being tapped out by tapping the screen. The tempo is displayed in real-time and can be reset by not tapping for 2 seconds."
/>
<meta name="theme-color" content="#292f38" />
<link rel="canonical" href="https://bpm-tap-0.netlify.app/" />
<title>bpm tap</title>
</head>
<body>
<div id="app"></div>
<script type="module" src="/src/main.ts"></script>
</body>
</html>