forked from crackedstudio/tikka
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
46 lines (42 loc) · 1.96 KB
/
Copy pathindex.html
File metadata and controls
46 lines (42 loc) · 1.96 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/vite.svg" />
<link rel="apple-touch-icon" href="/vite.svg">
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="theme-color" content="#ffffff" />
<title>Tikka | Decentralized Raffles on Stellar</title>
<meta name="description" content="Transparent, secure, and provably fair raffles powered by Soroban smart contracts on the Stellar network." />
<meta property="og:title" content="Tikka | Decentralized Raffles on Stellar" />
<meta property="og:description" content="Transparent, secure, and provably fair raffles powered by Soroban smart contracts." />
<meta property="og:image" content="/og-image.png" />
<meta property="og:type" content="website" />
<meta property="og:site_name" content="Tikka" />
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:title" content="Tikka | Decentralized Raffles on Stellar" />
<meta name="twitter:description" content="Transparent, secure, and provably fair raffles powered by Soroban smart contracts." />
<meta name="twitter:image" content="/og-image.png" />
<meta name="twitter:site" content="@tikaborofficial" />
<script>
// Apply dark class immediately to avoid flash of wrong theme
document.documentElement.classList.toggle(
"dark",
localStorage.getItem("tikka-theme") === "dark" ||
(!localStorage.getItem("tikka-theme") &&
window.matchMedia("(prefers-color-scheme: dark)").matches)
);
</script>
<script>
// Polyfill for 'global' - required by some Node.js packages in browser
if (typeof global === 'undefined') {
var global = globalThis;
}
</script>
</head>
<body>
<div id="root"></div>
<div id="modal-root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>