-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
39 lines (37 loc) · 1.88 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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="description" content="A fun music game where players scan QR codes to identify tracks and test their music knowledge.">
<meta name="viewport" content="width=device-width,initial-scale=1,minimum-scale=1,maximum-scale=1,user-scalable=no">
<meta name="mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent">
<meta property="og:type" content="website" />
<meta property="og:url" content="%VITE_APP_URL%%BASE_URL%" />
<meta property="og:title" content="%VITE_APP_NAME%" />
<meta property="og:description" content="A fun music game where players scan QR codes to identify tracks and test their music knowledge." />
<meta property="og:image" content="%VITE_APP_URL%%BASE_URL%/pwa-512x512.png" />
<meta property="og:image:type" content="image/png" />
<meta property="og:image:width" content="512" />
<meta property="og:image:height" content="512" />
<meta property="og:image:alt" content="%VITE_APP_NAME% Logo" />
<title>%VITE_APP_NAME%</title>
<link rel="preload" href="https://fonts.cdnfonts.com/s/52197/NEONLEDLight.woff" as="font" type="font/woff" crossorigin="anonymous">
<style>
@font-face {
font-family: 'NEON LED Light';
font-style: normal;
font-weight: 400;
src: local('NEON LED Light'), url('https://fonts.cdnfonts.com/s/52197/NEONLEDLight.woff') format('woff');
}
</style>
<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"/>
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>