-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
49 lines (49 loc) · 1.46 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" href="/src/assets/favicon.ico" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="theme-color" content="#0a0e12" />
<meta
name="description"
content="The no fuss podcast player: Purely online, lives in your browser, needs no account. Just listen!"
/>
<meta
property="og:image"
content="https://podcrush.nystad.io/ogimage.png"
/>
<meta property="og:image:type" content="image/png" />
<meta property="og:image:width" content="1200" />
<meta property="og:image:height" content="628" />
<meta property="og:image:alt" content="PodCrush logo" />
<link rel="manifest" href="/manifest.json" />
<title>PodCrush</title>
<script>
window.global = window;
</script>
<style type="text/css">
body {
background: #000;
color: #ccc;
font-family: sans-serif;
}
</style>
</head>
<body>
<div id="root">
<h1>PodCrush</h1>
<p>
PodCrush is an online podcast player that requires no account or sign
up. Just listen to your favorite podcasts directly in your browser.
</p>
</div>
<script type="module" src="/src/main.tsx"></script>
<img
referrerpolicy="no-referrer-when-downgrade"
src="https://ma.nystad.io/js/?idsite=5&rec=1"
style="border: 0"
alt=""
/>
</body>
</html>