This reverts commit d95fd63a48. Not sure what happened here to be honest.
This commit is contained in:
kittentm 2026-01-30 23:53:01 +01:00
commit 9f5b6d7b22
254 changed files with 22837 additions and 0 deletions

44
app/stages/index.html Normal file
View file

@ -0,0 +1,44 @@
<!DOCTYPE html>
<html lang="en">
<head>
<div id="squid-container">
<canvas id="squid-canvas" width="1920" height="1080"></canvas>
</div>
<meta charset="UTF-8" />
<title>SplatNet - Splatoon's multiplayer service hub</title>
<link rel="icon" href="/favicon.ico" type="image/x-icon" />
<link rel="stylesheet" href="../../styles.css" />
</head>
<body>
<div id="header-container"></div>
<div id="loading-overlay" class="loading-overlay">
<canvas id="loading-canvas" width="100" height="100"></canvas>
<div id="loading-text">Loading</div>
</div>
<div class="content">
<img src="/assets/stageinfo.png" class="stage-info" alt="Stage Info" />
<div class="stage-info-text">
Use the stage information to guide your weapon strategy and battle strategy!
</div>
<div class="stages-container" id="stages-container"></div>
</div>
<script>
fetch("../../../header.html")
.then(res => res.text())
.then(html => {
document.getElementById("header-container").innerHTML = html;
})
.catch(err => console.error("Failed to load header:", err));
</script>
<script src="stages.js"></script>
</body>
<style>
body {
background-image: url("/assets/stage.png");
}
</style>
</html>