-
Notifications
You must be signed in to change notification settings - Fork 173
Expand file tree
/
Copy pathindex.html
More file actions
40 lines (40 loc) · 1.9 KB
/
Copy pathindex.html
File metadata and controls
40 lines (40 loc) · 1.9 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<!-- PWA: theme color for browser chrome on Android/iOS -->
<meta name="theme-color" content="#1a1a2e" />
<!-- PWA: viewport and mobile web app settings -->
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="mobile-web-app-capable" content="yes" />
<!-- iOS PWA settings -->
<meta name="apple-mobile-web-app-capable" content="yes" />
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent" />
<meta name="apple-mobile-web-app-title" content="Goal Vault" />
<!-- PWA icons -->
<link rel="apple-touch-icon" href="/apple-touch-icon.svg" />
<link rel="icon" type="image/svg+xml" href="/icon-192.svg" />
<!-- SEO / share -->
<meta name="description" content="Decentralized campaign funding platform on the Stellar network." />
<meta property="og:title" content="Stellar Goal Vault" />
<meta property="og:description" content="Decentralized campaign funding platform on the Stellar network." />
<meta property="og:type" content="website" />
<meta property="og:url" content="https://stellar-goal-vault.vercel.app" />
<meta name="twitter:card" content="summary_large_image" />
<title>Stellar Goal Vault</title>
<!-- Inline theme detection to avoid FOUC — runs before React hydrates -->
<script>
(function() {
const THEME_KEY = 'stellar-goal-vault-theme';
const storedTheme = localStorage.getItem(THEME_KEY);
const systemTheme = window.matchMedia('(prefers-color-scheme: dark)').matches ? 'dark' : 'light';
const theme = storedTheme || systemTheme;
document.documentElement.setAttribute('data-theme', theme);
})();
</script>
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>