-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
88 lines (80 loc) · 2.79 KB
/
index.html
File metadata and controls
88 lines (80 loc) · 2.79 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" href="/favicon.ico" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>TornadoTrax - Advanced Tornado Research & Analysis</title>
<!-- Primary Meta Tags -->
<meta
name="title"
content="TornadoTrax - Advanced Tornado Research & Analysis"
/>
<meta
name="description"
content="Professional tornado data visualization and analysis tool for researchers and weather enthusiasts"
/>
<meta
name="keywords"
content="tornado data, weather research, storm analysis, meteorology, tornado visualization"
/>
<meta name="author" content="TornadoTrax" />
<!-- Open Graph / Facebook -->
<meta property="og:type" content="website" />
<meta property="og:url" content="https://tornadotrax.com/" />
<meta
property="og:title"
content="TornadoTrax - Advanced Tornado Research & Analysis"
/>
<meta
property="og:description"
content="Professional tornado data visualization and analysis tool for researchers and weather enthusiasts"
/>
<meta property="og:image" content="/og-image.png" />
<!-- Twitter -->
<meta property="twitter:card" content="summary_large_image" />
<meta property="twitter:url" content="https://tornadotrax.com/" />
<meta
property="twitter:title"
content="TornadoTrax - Advanced Tornado Research & Analysis"
/>
<meta
property="twitter:description"
content="Professional tornado data visualization and analysis tool for researchers and weather enthusiasts"
/>
<meta property="twitter:image" content="/og-image.png" />
<!-- Fonts -->
<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@300;400;500;600;700&display=swap"
rel="stylesheet"
/>
<!-- Leaflet CSS -->
<link
rel="stylesheet"
href="https://unpkg.com/leaflet@1.9.4/dist/leaflet.css"
integrity="sha256-p4NxAoJBhIIN+hmNHrzRCf9tD/miZyoHS5obTRR9BMY="
crossorigin=""
/>
<!-- Theme Color for browser UI -->
<meta name="theme-color" content="#ea580c" />
<!-- Google tag (gtag.js) -->
<script
async
src="https://www.googletagmanager.com/gtag/js?id=G-SCSD1XECQD"
></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() {
dataLayer.push(arguments);
}
gtag("js", new Date());
gtag("config", "G-SCSD1XECQD");
</script>
</head>
<body class="bg-white text-primary-900 min-h-screen">
<div id="app"></div>
<script type="module" src="/src/main.ts"></script>
</body>
</html>