migrate to javascript from python

This commit is contained in:
kittentm 2026-01-16 02:30:44 +01:00
commit 0406f77af7
3 changed files with 94 additions and 2 deletions

View file

@ -51,7 +51,8 @@
/* MAIN CONTENT */
.content {
display: flex;
justify-content: center;
flex-direction: column;
align-items: center;
padding-top: 24px;
}
@ -59,9 +60,19 @@
width: 65%;
max-width: 600px;
height: auto;
margin-bottom: 20px;
}
.stages-container {
width: 100%;
display: flex;
flex-direction: column;
align-items: center;
gap: 30px;
}
</style>
</head>
<body>
<div class="header">
@ -71,7 +82,11 @@
<div class="content">
<img src="../../assets/stageinfo.png" class="stage-info" alt="Stage Info">
<div class="stages-container" id="stages-container"></div>
</div>
<script src="stages.js"></script>
</body>
</html>