space-game/index.html
Michael Mainguy d47b6458a8
All checks were successful
Build / build (push) Successful in 1m41s
Add Zesty beacon, favicon, and web manifest
Wire up sig-beacon for spatial web discovery (production only),
add favicon/apple-touch-icon links to index.html, populate
site.webmanifest with app metadata, and add OG/meta tags.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-03-04 09:46:18 -06:00

38 lines
1.5 KiB
HTML

<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta content="width=device-width, initial-scale=1, height=device-height" name="viewport">
<link href="/styles.css" rel="stylesheet">
<title>Space Game</title>
<meta name="application-name" content="Flat Earth Defense Space Shooter">
<meta name="description" content="WebXR space shooter game built with BabylonJS for VR headsets">
<meta property="og:url" content="https://www.flatearthdefense.com">
<meta property="og:image" content="https://www.flatearthdefense.com/og-image.png">
<meta name="keywords" content="webxr, vr, space, game, babylonjs, metaverse">
<link rel="icon" type="image/x-icon" href="/favicon.ico">
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png">
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png">
<link rel="manifest" href="/site.webmanifest">
<meta name="theme-color" content="#000000">
<script>
navigator.serviceWorker.getRegistrations().then(registrations => {
for (const registration of registrations) {
registration.unregister();
}
});
</script>
</head>
<body>
<!-- BabylonJS Canvas (fixed background) -->
<canvas id="gameCanvas"></canvas>
<!-- Svelte App Mount Point -->
<div id="app"></div>
<!-- Main TypeScript Entry Point -->
<script type="module" src="/src/main.ts"></script>
</body>
</html>