-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathindex.html
More file actions
62 lines (55 loc) · 2.16 KB
/
index.html
File metadata and controls
62 lines (55 loc) · 2.16 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
57
58
59
60
61
62
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=%VITE_GTM_ID%"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', '%VITE_GTM_ID%');
</script>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>SolMint - Create Your Solana Token | Easy SPL Token Creator</title>
<meta name="description" content="Launch your own cryptocurrency in seconds. No coding required. Professional token creation made simple on Solana blockchain." />
<meta name="author" content="Solmint" />
<link rel="icon" type="image/svg+xml" href="/favicon.svg">
<link rel="alternate icon" href="/favicon.png">
<meta property="og:title" content="SolMint - Create Solana Tokens Instantly" />
<meta property="og:description" content="Launch your own cryptocurrency in seconds. No coding required. Professional token creation made simple on Solana blockchain." />
<meta property="og:type" content="website" />
<meta property="og:image" content="/home-screen.png" />
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:site" content="@mintme_dev" />
<meta name="twitter:image" content="/home-screen.png" />
<script>
// Polyfill para process
if (typeof process === "undefined") {
window.process = {
env: {},
version: "",
platform: "browser",
nextTick: (fn) => setTimeout(fn, 0),
browser: true,
};
}
// Polyfill para global
if (typeof global === "undefined") {
window.global = window;
}
// Polyfill básico para Buffer
if (typeof Buffer === "undefined") {
window.Buffer = {
from: (data) => new Uint8Array(data),
alloc: (size) => new Uint8Array(size),
isBuffer: () => false,
};
}
</script>
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>