neptunium-explorer/index.html
2024-02-18 22:20:37 +08:00

42 lines
1.6 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Neptunium</title>
<meta name="description" content="Neptunium flight computer explorer.">
<meta name="keywords" content="Neptunium, Flight Computer, Avionics, PCB, University, UWA Aerospace">
<meta name="author" content="Peter Tanner">
<link rel="canonical" href="https://www.petertanner.dev/neptunium/" />
<link rel="stylesheet" href="style.css">
<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=IBM+Plex+Sans:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;1,100;1,200;1,300;1,400;1,500;1,600;1,700&display=swap"
rel="stylesheet"
/>
<link rel="icon" href="neptunium.svg" sizes="any" type="image/svg+xml">
</head>
<body>
<img id="logo" src="neptunium-inverted.svg" alt="Logo" />
<button id="resetButton">📷</button>
<div id="links" >
<a href="https://github.com/peter-tanner">GitHub</a> |
<a href="https://uwaaero.space">UWA Aerospace</a> | 2024
</div>
<div id="loadingOverlay">
<div id="loadingSpinner"></div>
</div>
<script type="importmap">
{
"imports": {
"three": "https://unpkg.com/three@0.161.0/build/three.module.js",
"three/addons/": "https://unpkg.com/three@0.161.0/examples/jsm/"
}
}
</script>
<script type="module" src="main.js" ></script>
</script>
</body>
</html>