Survival_Island_Game / ui /index.html
suraj140's picture
Restore ui folder in repository root
98d8ad4
Raw
History Blame Contribute Delete
691 Bytes
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Survival Island 🏝️ – LLM Survival Agent</title>
<meta name="description"
content="Watch an AI agent powered by a HuggingFace LLM survive a
procedurally-generated island. Meta PyTorch Hackathon." />
<meta name="theme-color" content="#000000" />
<style>
/* Prevent flash of unstyled content */
html, body { margin: 0; padding: 0; background: #000; }
</style>
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.jsx"></script>
</body>
</html>