-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathindex.html
102 lines (98 loc) · 3.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
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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<title>Cal.fm – The official Cal.com work playlists</title>
<meta name="title" content="Cal.fm – The official Cal.com work playlists" />
<meta
name="description"
content="Tune in to the official playlists of Cal.com team members while you work"
/>
<meta property="og:type" content="website" />
<meta
property="og:title"
content="Cal.fm – The official Cal.com work playlists"
/>
<meta
property="og:description"
content="Tune in to the official playlists of Cal.com team members while you work"
/>
<meta property="og:image" content="https://cal.fm/og-image.jpg" />
<meta property="twitter:card" content="summary_large_image" />
<meta property="twitter:url" content="https://metatags.io/" />
<meta
property="twitter:title"
content="Cal.fm – The official Cal.com work playlists"
/>
<meta
property="twitter:description"
content="Tune in to the official playlists of Cal.com team members while you work"
/>
<meta property="twitter:image" content="https://cal.fm/og-image.jpg" />
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png" />
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png" />
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png" />
<link rel="manifest" href="/site.webmanifest" />
<link rel="mask-icon" href="/safari-pinned-tab.svg" color="#5bbad5" />
<meta name="msapplication-TileColor" content="#000000" />
<meta name="theme-color" content="#ffffff" />
<script src="https://cdn.tailwindcss.com"></script>
<style>
@font-face {
font-family: "Cal Sans";
src: url("https://cal.com/cal.ttf");
}
.font-cal {
font-family: "Cal Sans", sans-serif;
}
</style>
</head>
<body class="bg-gray-900 text-white flex">
<div class="mx-auto mt-24">
<div id="header" class="text-center mb-12">
<div class="mb-1 text-4xl font-cal">Cal.fm</div>
<div class="text-lg text-gray-400">The official Cal.com work playlists</div>
</div>
<div id="playlists" class="grid grid-cols-2 md:grid-cols-4 gap-8">
<a
href="https://open.spotify.com/playlist/2WmfwCUax0TeicCCye6BVs?si=a52d3a13e61448c4"
>
<div class="bg-teal-500 rounded-sm p-8 text-center">
<div class="text-2xl font-cal">Cal.com</div>
<hr class="border-white w-8 mx-auto my-2" />
<div class="text-sm">House</div>
</div>
</a>
<a
href="https://open.spotify.com/playlist/1rQ0nokdlpAW8rodlyXBmS?si=948167ed5a9748fa"
>
<div class="bg-yellow-500 rounded-sm p-8 text-center">
<div class="text-2xl font-cal">Cal.com</div>
<hr class="border-white w-8 mx-auto my-2" />
<div class="text-sm">Reggaeton</div>
</div>
</a>
<a
href="https://open.spotify.com/playlist/7Fb7bpLENfQrCR2hp1Z6ga?si=653a0559e1b5478d"
>
<div class="bg-pink-500 rounded-sm p-8 text-center">
<div class="text-2xl font-cal">Cal.com</div>
<hr class="border-white w-8 mx-auto my-2" />
<div class="text-sm">Dance/Pop</div>
</div>
</a>
<a
href="https://open.spotify.com/playlist/4wdxddBSei8sgo3MgSYjxi?si=cc4380819e134e8a"
>
<div class="bg-red-500 rounded-sm p-8 text-center">
<div class="text-2xl font-cal">Cal.com</div>
<hr class="border-white w-8 mx-auto my-2" />
<div class="text-sm">Rock</div>
</div>
</a>
</div>
</div>
</body>
</html>