forked from TheMorpheus407/LinuxChooser
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
68 lines (65 loc) · 3 KB
/
index.html
File metadata and controls
68 lines (65 loc) · 3 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
65
66
67
68
<!doctype html>
<html lang="de">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Linux Chooser - Finde deine perfekte Linux-Distribution</title>
<meta name="description" content="Finde die perfekte Linux-Distribution für dich! Beantworte einfache Fragen und erhalte eine personalisierte Empfehlung - keine Vorkenntnisse nötig." />
<!-- Google Fonts: Oswald + Roboto -->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Oswald:wght@400;500;600;700&family=Roboto:wght@300;400;500;700&display=swap" rel="stylesheet">
<!-- Open Graph Meta Tags -->
<meta property="og:type" content="website" />
<meta property="og:title" content="Linux Chooser - Finde deine perfekte Linux-Distribution" />
<meta property="og:description" content="Finde die perfekte Linux-Distribution für deine Bedürfnisse mit dem Linux Chooser." />
<meta property="og:locale" content="de_DE" />
<!-- TODO: Replace YOUR_DOMAIN with your production URL (e.g., https://linuxchooser.com) -->
<meta property="og:image" content="YOUR_DOMAIN/MO-logo_transparent_WHITE_445813.png" />
<meta property="og:url" content="YOUR_DOMAIN/" />
<!-- Twitter Card Meta Tags -->
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:title" content="Linux Chooser - Finde deine perfekte Linux-Distribution" />
<meta name="twitter:description" content="Finde die perfekte Linux-Distribution für dich! Beantworte einfache Fragen und erhalte eine personalisierte Empfehlung - keine Vorkenntnisse nötig." />
<!-- TODO: Replace YOUR_DOMAIN with your production URL -->
<meta name="twitter:image" content="YOUR_DOMAIN/MO-logo_transparent_WHITE_445813.png" />
</head>
<body>
<script>
// GitHub Pages SPA redirect handler
// Restores the path stored by 404.html and updates the URL using History API
(function() {
var redirect = sessionStorage.getItem('redirect');
if (redirect) {
sessionStorage.removeItem('redirect');
window.history.replaceState(null, '', redirect);
}
})();
</script>
<div id="root">
<div style="
display: flex;
justify-content: center;
align-items: center;
min-height: 100vh;
background-color: #0d0d11;
color: #f0f2f5;
font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
font-size: 1.25rem;
margin: 0;
">
<span style="
animation: pulse 1.5s ease-in-out infinite;
">Laden...</span>
</div>
<style>
@keyframes pulse {
0%, 100% { opacity: 1; }
50% { opacity: 0.5; }
}
</style>
</div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>