Nav init
All checks were successful
Build and publish / Build Container (push) Successful in 1m29s

This commit is contained in:
2026-02-28 23:27:35 -05:00
parent 204091ef4c
commit 4735968612
19 changed files with 5340 additions and 63 deletions

55
public/index.html Normal file
View File

@@ -0,0 +1,55 @@
<!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('/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>
<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>