-
Notifications
You must be signed in to change notification settings - Fork 99
Expand file tree
/
Copy pathindex.html
More file actions
56 lines (52 loc) · 2.29 KB
/
index.html
File metadata and controls
56 lines (52 loc) · 2.29 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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/vite.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Stellar Developer Dashboard</title>
<script>
// Blocking script to accurately set the theme dataset attribute before initial paint
(function () {
try {
var saved = localStorage.getItem('stellar-dashboard-theme');
if (saved === 'light' || saved === 'dark') {
document.documentElement.setAttribute('data-theme', saved);
} else {
var prefersDark = window.matchMedia('(prefers-color-scheme: dark)').matches;
document.documentElement.setAttribute('data-theme', prefersDark ? 'dark' : 'light');
}
} catch (e) {}
})();
</script>
<meta name="description" content="Real-time developer dashboard for the Stellar network" />
<meta name="theme-color" content="#00e5ff" />
<title>Stellar Dev Dashboard</title>
<meta
name="viewport"
content="width=device-width, initial-scale=1.0, maximum-scale=5.0, user-scalable=yes, viewport-fit=cover"
/>
<!-- PWA / installability -->
<link rel="manifest" href="/manifest.json" />
<meta name="theme-color" content="#1e2327" />
<meta name="mobile-web-app-capable" content="yes" />
<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="StellarDev" />
<!-- Apple touch icons (fallback for Safari) -->
<link rel="apple-touch-icon" sizes="192x192" href="/icons/icon-192.png" />
<link rel="apple-touch-icon" sizes="512x512" href="/icons/icon-512.png" />
<!-- Preconnect to font providers -->
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<title>Stellar Dev Dashboard</title>
<meta
name="description"
content="Real-time developer dashboard for the Stellar network — balances, transactions, contracts, DEX explorer, and more."
/>
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.jsx"></script>
</body>
</html>