-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathindex.html
More file actions
47 lines (40 loc) · 2.34 KB
/
Copy pathindex.html
File metadata and controls
47 lines (40 loc) · 2.34 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, viewport-fit=cover" />
<title>ZapTrax - Nostr Music Player</title>
<meta name="description" content="Discover and stream music on Nostr with Wavlake integration. Create playlists, like tracks, and support artists with Lightning zaps." />
<!-- PWA Meta Tags -->
<meta name="theme-color" content="#000000" />
<meta name="apple-mobile-web-app-capable" content="yes" />
<meta name="apple-mobile-web-app-status-bar-style" content="default" />
<meta name="apple-mobile-web-app-title" content="ZapTrax" />
<meta name="mobile-web-app-capable" content="yes" />
<!-- Icons -->
<link rel="icon" type="image/png" href="/zaptrax.png" />
<link rel="apple-touch-icon" href="/icon-192.png" />
<!-- Open Graph -->
<meta property="og:type" content="website" />
<meta property="og:title" content="ZapTrax - Nostr Music Player" />
<meta property="og:description" content="Discover and stream music on Nostr with Wavlake integration. Create playlists, like tracks, and support artists with Lightning zaps." />
<meta property="og:image" content="/zaptrax.png" />
<!-- Twitter Card -->
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:title" content="ZapTrax - Nostr Music Player" />
<meta name="twitter:description" content="Discover and stream music on Nostr with Wavlake integration. Create playlists, like tracks, and support artists with Lightning zaps." />
<meta name="twitter:image" content="/zaptrax.png" />
<!-- Cache Control -->
<meta http-equiv="Cache-Control" content="no-cache, no-store, must-revalidate" />
<meta http-equiv="Pragma" content="no-cache" />
<meta http-equiv="Expires" content="0" />
<!-- Security -->
<meta http-equiv="content-security-policy" content="default-src 'none'; script-src 'self'; style-src 'self' 'unsafe-inline'; frame-src 'self' https:; font-src 'self'; base-uri 'self'; manifest-src 'self'; connect-src 'self' blob: https: wss:; img-src 'self' data: blob: https:; media-src 'self' https:">
<!-- PWA Manifest -->
<link rel="manifest" href="/manifest.webmanifest">
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>