This repository has been archived by the owner on Dec 31, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
59 lines (53 loc) · 2.25 KB
/
index.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>AlgoFractals</title>
<meta name="description" content="Generate Randomized Algorand Fractal NFTs with embedded traits">
<meta name="keywords" content="algorand algofractals nft trading">
<!-- Google / Search Engine Tags -->
<meta itemprop="name" content="AlgoFractals">
<meta itemprop="description" content="Generate Randomized Algorand Fractal NFTs with embedded traits">
<meta itemprop="image" content="https://i.imgur.com/xfi8iwt.png">
<!-- Facebook Meta Tags -->
<meta property="og:url" content="https://algofractals.com">
<meta property="og:type" content="website">
<meta property="og:title" content="AlgoFractals">
<meta property="og:description" content="Generate Randomized Algorand Fractal NFTs with embedded traits">
<meta property="og:image" content="https://i.imgur.com/xfi8iwt.png">
<!-- Twitter Meta Tags -->
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:title" content="AlgoFractals">
<meta name="twitter:description" content="Generate Randomized Algorand Fractal NFTs with embedded traits">
<meta name="twitter:image" content="https://i.imgur.com/xfi8iwt.png">
<!-- Global site tag (gtag.js) - Google Analytics -->
<script type="module" async src="https://www.googletagmanager.com/gtag/js?id=G-BEPPG99SHQ"></script>
<script type="module">
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-BEPPG99SHQ');
</script>
<link rel="stylesheet" href="/font/inter.css" />
</head>
<body>
<div id="app"></div>
<script
src="https://unpkg.com/algosdk@1.13.0/dist/browser/algosdk.min.js"
integrity="sha384-3IaxTgktbWGiqPkr5oZQMM4H99ziYzoEUb6sznk03coGR2Cdf1r0I1GWPUL37iu8"
crossorigin="anonymous"
type="module"
></script>
<script type="module">
import Buffer from "buffer";
window.Buffer = Buffer;
</script>
<script type="module" src="/src/main.js"></script>
</body>
</html>
<script>
if (global === undefined) {
var global = window;
}
</script>