-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
49 lines (49 loc) · 1.84 KB
/
index.html
File metadata and controls
49 lines (49 loc) · 1.84 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>PosterVerse</title>
<meta name="description" content="A social-first creative platform where designers publish poster artwork, follow other creators, and discover visual inspiration." />
<meta name="theme-color" content="#CCFF00" />
<script>
// Unregister any stale service workers and reload once to pick up fresh assets.
// This fixes the "blank page on first load, works after Ctrl+Shift+R" bug.
if ('serviceWorker' in navigator) {
navigator.serviceWorker.getRegistrations().then(function(registrations) {
var unregistered = registrations.length > 0;
var pending = registrations.length;
if (pending === 0) return;
registrations.forEach(function(registration) {
registration.unregister().then(function() {
pending--;
if (pending === 0 && unregistered) {
// Only reload once after all SWs are gone
if (!sessionStorage.getItem('sw_cleared')) {
sessionStorage.setItem('sw_cleared', '1');
window.location.reload();
}
}
});
});
});
}
</script>
<script>
(function() {
try {
var savedTheme = localStorage.getItem('theme');
var prefersDark = window.matchMedia('(prefers-color-scheme: dark)').matches;
if (savedTheme === 'dark' || (!savedTheme && prefersDark)) {
document.documentElement.classList.add('dark');
}
} catch (e) {}
})();
</script>
</head>
<body>
<div id="root"></div>
<div class="grain"></div>
<script type="module" src="/src/index.tsx"></script>
</body>
</html>