made everything static

This commit is contained in:
2025-01-04 01:07:18 -05:00
parent 81ba85845b
commit 21dfad35bf
4 changed files with 0 additions and 20 deletions

18
index.html Normal file
View File

@ -0,0 +1,18 @@
<!DOCTYPE html>
<html>
<head>
<title>GANDALF Network Monitor</title>
<link rel="stylesheet" href="{{ url_for('static', filename='style.css') }}">
</head>
<body>
<div class="container">
<h1>GANDALF Network Monitor</h1>
<div class="metrics-container">
<div id="network-health"></div>
<div id="latency"></div>
<div id="bandwidth"></div>
</div>
</div>
<script src="{{ url_for('static', filename='app.js') }}"></script>
</body>
</html>