Files
navi/public/index.html
ztimson aa79b21a5f
All checks were successful
Build and publish / Build Container (push) Successful in 1m27s
Fixed minor prod issues
2026-03-01 00:03:45 -05:00

57 lines
1.2 KiB
HTML

<!DOCTYPE html>
<html>
<head>
<title>NetNavi v1.0.0</title>
<link rel="icon" href="/favicon.png" />
<script src="https://cdn.socket.io/4.6.0/socket.io.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/pixi.js/7.3.2/pixi.min.js"></script>
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
cursor: url('/assets/cursor.png'), auto !important;
}
html, body {
width: 100%;
height: 100%;
overflow: hidden;
font-family: 'Courier New', monospace;
}
button, input {
cursor: default;
}
body {
background-size: cover;
background-position: center;
background-repeat: no-repeat;
background-attachment: fixed;
}
canvas {
display: block;
position: absolute;
top: 0;
left: 0;
}
</style>
</head>
<body>
<div id="game"></div>
<jukebox-component id="jukebox"></jukebox-component>
<llm-component id="llm"></llm-component>
<script src="/netnavi-api.js"></script>
<script>window.netNaviAPI = new NetNaviAPI();</script>
<script src="/jukebox.js"></script>
<script src="/llm.js"></script>
<script src="/world.js"></script>
</body>
</html>