-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
63 lines (58 loc) · 2.49 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<title>Huskyfy</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, viewport-fit=cover">
<meta name="theme-color" content="#C6E1DC">
<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">
<meta name="msapplication-config" content="/browserconfig.xml" />
<!-- Fonts -->
<link rel="preload" as="font" href="/Oswald-Medium.ttf" type="font/ttf" crossorigin>
<link rel="preload" as="font" href="/Righteous-j7av.ttf" type="font/ttf" crossorigin>
<!-- OpenGraph -->
<meta property="og:type" content="website">
<meta property="og:url" content="https://www.huskyfy.com" />
<meta property="og:title" content="HUSKYFY - Interact with Spotify playlists smoothly" />
<meta property="og:image" content="/large-logo-circle.png" />
<meta property="og:site_name" content="Huskyfy">
<meta property="og:locale" content="en_US">
<!-- Twitter part -->
<meta name="twitter:card" content="summary">
<meta name="twitter:url" content="https://www.huskyfy.com">
<meta name="twitter:title" content="Huskyfy">
<meta name="twitter:description" content="Huskyfy - Interact with Spotify playlists smoothly">
<meta name="twitter:image" content="/full-logo.png">
<!-- Author -->
<meta name="author-name" content="Samuel Rigaud" />
<meta name="author-link" content="https://github.com/s-rigaud" />
<!-- Apple icons -->
<link rel="apple-touch-icon" href="/favicon.png">
<link rel="shortcut icon" href="/favicon.png">
<link rel="manifest" href="/manifest.json">
<link rel="icon" type="image/png" href="/favicon.png">
<!-- CSS -->
<link rel="stylesheet" href="/normalize.css" />
<link rel="stylesheet" href="/variables.css" />
<link rel="stylesheet" href="/main.css" />
<!-- Spotify SDK -->
<!--<script async src="https://sdk.scdn.co/spotify-player.js"></script>-->
</head>
<script async src="https://www.googletagmanager.com/gtag/js?id=G-13M7GHQHKD"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() { dataLayer.push(arguments); }
gtag("js", new Date());
gtag("config", "G-13M7GHQHKD");
</script>
<body>
<noscript>
<strong>We're sorry but Huskyfy doesn"t work properly without JavaScript enabled.
Please enable it to continue.</strong>
</noscript>
<div id="app"></div>
<script type="module" src="/src/main.ts"></script>
</body>
</html>