isle.pizza/index.html
Christian Semmler 804a87e687
Migrate frontend to Svelte 5
- Replace vanilla JS with Svelte 5 components
- Add Vite build system with Terser optimization
- Reorganize assets into src/ and public/ directories
- Update README with setup instructions
2026-01-11 19:10:16 -07:00

43 lines
2.0 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=no">
<title>LEGO® Island</title>
<meta name="description"
content="Play the classic 1997 PC game LEGO® Island directly in your web browser! This fan-made web port, built with Emscripten from the isledecomp project, brings the beloved adventure back to life.">
<meta name="keywords"
content="LEGO Island, LEGO, classic game, 1997, web port, browser game, Emscripten, isledecomp, retro gaming, play online, Infomaniac, Brickster, Pepper Roni">
<meta name="author" content="isledecomp/isle.pizza">
<meta name="robots" content="index, follow">
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:url" content="https://isle.pizza/">
<meta name="twitter:title" content="LEGO® Island - Online Web Port">
<meta name="twitter:description" content="Play the classic 1997 PC game LEGO® Island directly in your web browser!">
<meta name="twitter:image" content="https://isle.pizza/island.webp">
<meta property="og:type" content="website">
<meta property="og:url" content="https://isle.pizza/">
<meta property="og:title" content="LEGO® Island - Online Web Port">
<meta property="og:description" content="Play the classic 1997 PC game LEGO® Island directly in your web browser!">
<meta property="og:image" content="https://isle.pizza/island.webp">
<meta property="og:site_name" content="LEGO Island Web Port">
<link rel="manifest" href="manifest.json">
<link rel="icon" type="image/png" href="favicon.png">
<link rel="canonical" href="https://isle.pizza">
<style>
body { margin: 0; background-color: #000000; }
#app:empty { visibility: hidden; }
</style>
</head>
<body>
<div id="app"></div>
<script type="module" src="/src/main.js"></script>
<script src="/isle.js" defer></script>
</body>
</html>