-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathindex.html
More file actions
59 lines (59 loc) · 3.16 KB
/
index.html
File metadata and controls
59 lines (59 loc) · 3.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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, viewport-fit=cover">
<meta name="theme-color" content="#0a0a1a">
<meta name="robots" content="index, follow">
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png">
<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&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=VT323&display=swap" rel="stylesheet">
<link rel="canonical" href="https://lightpath.cc/">
<!-- Primary Meta Tags -->
<title>Lightpath</title>
<meta name="title" content="Lightpath — Trace your flight through daylight, twilight, and darkness">
<meta name="description" content="An interactive 3D visualization showing how flight paths intersect with Earth's day-night cycle.">
<meta name="author" content="Studio Folder">
<meta name="keywords" content="flight visualization, flying, aviation, daylight, twilight, data visualization, 3D globe, Three.js, great circle routes">
<!-- Open Graph / Facebook -->
<meta property="og:type" content="website">
<meta property="og:url" content="https://lightpath.cc/">
<meta property="og:title" content="Lightpath — Trace your flight through daylight, twilight, and darkness">
<meta property="og:description" content="An interactive 3D visualization showing how flight paths intersect with Earth's day-night cycle.">
<meta property="og:image" content="https://lightpath.cc/og-image.png">
<meta property="og:image:width" content="1200">
<meta property="og:image:height" content="630">
<meta property="og:site_name" content="Lightpath">
<meta property="og:locale" content="en_GB">
<!-- Twitter -->
<meta property="twitter:card" content="summary_large_image">
<meta property="twitter:url" content="https://lightpath.cc/">
<meta property="twitter:title" content="Lightpath — Trace your flight through daylight, twilight, and darkness">
<meta property="twitter:description" content="An interactive 3D visualization showing how flight paths intersect with Earth's day-night cycle.">
<meta property="twitter:image" content="https://lightpath.cc/og-image.png">
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "WebApplication",
"name": "Lightpath",
"url": "https://lightpath.cc",
"description": "An interactive 3D visualization showing how flight paths intersect with Earth's day-night cycle.",
"applicationCategory": "Visualization",
"operatingSystem": "Web",
"author": {
"@type": "Organization",
"name": "Studio Folder",
"url": "https://studiofolder.it"
}
}
</script>
<!-- Analytics -->
<script defer src="https://cloud.umami.is/script.js" data-website-id="a17149a6-c570-4c55-b301-97f9ff316b61"></script>
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.jsx"></script>
</body>
</html>