-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
121 lines (110 loc) · 4.98 KB
/
index.html
File metadata and controls
121 lines (110 loc) · 4.98 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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<title>NASA 3D Model Viewer</title>
<!-- Viewport -->
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<!-- Primary Meta -->
<meta
name="description"
content="Interactive viewer for NASA 3D models using Three.js and custom GLSL shaders. Browse spacecraft, rovers, telescopes and more from NASA's open 3D Resources library."
/>
<meta name="author" content="ArtechFuz3D" />
<meta
name="keywords"
content="NASA, 3D models, hologram, Three.js, WebGL, spacecraft, rovers, space, interactive, viewer"
/>
<meta name="robots" content="index, follow" />
<meta name="theme-color" content="#0b0d12" />
<!-- Open Graph -->
<meta property="og:title" content="NASA 3D Model Viewer" />
<meta
property="og:description"
content="Browse and view NASA's open 3D models with a real-time hologram shader. Spacecraft, rovers, telescopes and more — all rendered in WebGL."
/>
<meta property="og:type" content="website" />
<meta
property="og:url"
content="https://artechfuz3d.github.io/NASA-3D-Model-Viewer/"
/>
<meta
property="og:image"
content="https://artechfuz3d.github.io/NASA-3D-Model-Viewer/preview-alt.png"
/>
<meta property="og:image:width" content="1200" />
<meta property="og:image:height" content="630" />
<meta
property="og:image:alt"
content="NASA 3D Model Viewer — holographic spacecraft rendered in WebGL"
/>
<meta property="og:site_name" content="ArtechFuz3D" />
<meta property="og:locale" content="en_US" />
<!-- Twitter / X -->
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:title" content="NASA 3D Model Viewer" />
<meta
name="twitter:description"
content="Browse and view NASA's open 3D models with a real-time hologram shader built in Three.js."
/>
<meta
name="twitter:image"
content="https://artechfuz3d.github.io/NASA-3D-Model-Viewer/preview-alt.png"
/>
<meta
name="twitter:image:alt"
content="NASA 3D Model Viewer — holographic spacecraft rendered in WebGL"
/>
<meta name="twitter:creator" content="@ArtechFuz3D" />
<!-- Fonts -->
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<!-- ── FONT CANDIDATES ──────────────────────────────────────────────
All fonts are loaded so you can swap the CSS tokens instantly.
Active UI font is set by --font-ui in style.css :root.
─────────────────────────────────────────────────────────────────── -->
<link
href="https://fonts.googleapis.com/css2?family=Exo+2:wght@300;400;500;600;700&family=Titillium+Web:wght@300;400;600;700&family=Space+Grotesk:wght@300;400;500;600;700&family=DM+Sans:wght@300;400;500;600;700&family=Outfit:wght@300;400;500;600;700&family=Rajdhani:wght@400;500;600;700&family=DM+Mono:wght@400;500&family=JetBrains+Mono:wght@400;500&family=IBM+Plex+Mono:wght@400;500&display=swap"
rel="stylesheet"
/>
<!-- Favicons -->
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png" />
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png" />
<link
rel="icon"
type="image/png"
sizes="192x192"
href="/android-chrome-192x192.png"
/>
<link
rel="icon"
type="image/png"
sizes="512x512"
href="/android-chrome-512x512.png"
/>
<link rel="apple-touch-icon" href="/apple-touch-icon.png" />
<link rel="manifest" href="/site.webmanifest" />
<link rel="mask-icon" href="/safari-pinned-tab.svg" color="#0b0d12" />
<link rel="shortcut icon" href="/favicon.ico" />
<!-- Styles -->
<link rel="stylesheet" href="./src/style.css" />
</head>
<body>
<!-- include:toolbar -->
<div id="app">
<!-- include:sidebar -->
<!-- include:viewport -->
<!-- include:right-panel -->
</div>
<!-- include:statusbar -->
<!-- include:planet-panel -->
<!-- ═══ INTRO OVERLAY ══════════════════════════════════════════
Self-contained boot sequence. Removes itself from DOM when done.
Video: drop airlock.webm into public/
To disable: remove the two lines below.
══════════════════════════════════════════════════════════════ -->
<div id="intro-overlay"></div>
<script type="module" src="./src/intro.js"></script>
<script type="module" src="./src/main.js"></script>
</body>
</html>