-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
64 lines (60 loc) · 2.23 KB
/
index.html
File metadata and controls
64 lines (60 loc) · 2.23 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<!-- Primary Meta Tags -->
<title>Dimmer - Modern Local Music Player App</title>
<meta name="title" content="Dimmer - Modern Local Music Player App" />
<meta
name="description"
content="Dimmer is a lightweight, elegant local music player built with .NET MAUI. Enjoy offline playback, playlists, lyrics, and modern UI across mobile, desktop, and more."
/>
<!-- Keywords for SEO -->
<meta
name="keywords"
content="Dimmer, music player app, local music player, offline music app, open source music app, .NET MAUI player, playlist manager, lyrics player, cross-platform music app, Dimmer MAUI"
/>
<!-- Open Graph / Facebook -->
<meta property="og:type" content="website" />
<meta property="og:url" content="https://dimmer-app.com/" />
<meta property="og:title" content="Dimmer - Modern Local Music Player" />
<meta
property="og:description"
content="Dimmer is a cross-platform local music player with offline playback, playlist management, and lyrics support."
/>
<meta property="og:image" content="/og-image.png" />
<!-- Twitter -->
<meta property="twitter:card" content="summary_large_image" />
<meta property="twitter:url" content="https://dimmer-app.com/" />
<meta property="twitter:title" content="Dimmer - Local Music Player App" />
<meta
property="twitter:description"
content="Dimmer is a free, elegant music player designed for local libraries. Available on mobile, desktop, and more."
/>
<meta property="twitter:image" content="/og-image.png" />
<!-- Favicons -->
<link
rel="apple-touch-icon"
sizes="180x180"
href="/favicon_io/apple-touch-icon.png"
/>
<link
rel="icon"
type="image/png"
sizes="32x32"
href="/favicon_io/favicon-32x32.png"
/>
<link
rel="icon"
type="image/png"
sizes="16x16"
href="/favicon_io/favicon-16x16.png"
/>
<link rel="manifest" href="/site.webmanifest" />
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>