-
Notifications
You must be signed in to change notification settings - Fork 3
/
index.html
37 lines (28 loc) · 1.18 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>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="description" content="Simple pomodoro timer with Spotify integration and stats" />
<meta name="theme-color" content="#F76045" />
<title>Pelmodoro</title>
<link rel="icon" href="/favicon.ico" />
<link rel="apple-touch-icon" href="/apple-icon-180x180.png" />
<link rel="mask-icon" href="/mask-icon.svg" />
<link rel="preconnect" href="https://fonts.gstatic.com" />
<link href="https://fonts.googleapis.com/css2?family=Montserrat&display=swap" rel="stylesheet" />
<link href="https://fonts.googleapis.com/icon?family=Material+Icons+Round" rel="stylesheet" />
<link rel="stylesheet" href="./src/css/style.css" />
<script src="https://sdk.scdn.co/spotify-player.js"></script>
<script src="./src/js/monit.ts" type="module"></script>
<script>
window.spotifyPlayerLoaded = false;
window.onSpotifyWebPlaybackSDKReady = () => {
window.spotifyPlayerLoaded = true;
};
</script>
</head>
<body>
<script src="./main.js"></script>
<script src="./src/js/index.ts" type="module"></script>
</body>
</html>