-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathindex.html
More file actions
37 lines (34 loc) · 1.51 KB
/
index.html
File metadata and controls
37 lines (34 loc) · 1.51 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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
<link rel="apple-touch-icon" href="/favicon.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="talentapp:project_verification" content="4dae898ecb50a1797dc039dd2ea788fe212c61f2154518463374d2ace4d8ba2e772141535ad89b2ca084312658fcbe99f18be1ee24bccb81271c6d7d4e67831c" />
<meta name="description"
content="StackSend - Send STX and SIP-010 tokens to multiple recipients in a single transaction on Stacks blockchain." />
<meta name="theme-color" content="#f97316" />
<title>StackSend - Stacks Multisend DApp</title>
<!-- Inter font for clean typography -->
<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=Inter:wght@400;500;600;700;800&display=swap" rel="stylesheet">
<script>
// Apply theme before page render to prevent flash
(function () {
const theme = localStorage.getItem('theme') ||
(window.matchMedia('(prefers-color-scheme: dark)').matches ? 'dark' : 'light');
if (theme === 'dark') {
document.documentElement.classList.add('dark');
document.documentElement.setAttribute('data-theme', 'dark');
}
})();
window.global = window;
</script>
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>