Heat-Tracker/public/heatmap.html
2025-04-22 09:41:26 -04:00

40 lines
1.1 KiB
HTML
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="icon" href="/favicon.ico">
<link rel="stylesheet" href="styles.css">
<title>Heat Map</title>
</head>
<body>
<!-- BINSstyle fixed header -->
<header class="main-header">
<img src="/image/logo.png" class="logo" alt="Amazon Logo">
<span class="header-title"> | Fuego - Heat Tracker</span>
<button class="nav-btn" onclick="location.href='/input.html'">Log Reading</button>
<button class="nav-btn" onclick="location.href='/heatmap.html'">Heat Map</button>
<button class="nav-btn" onclick="location.href='/trends.html'">Trends</button>
</header>
<div class="page-container">
<div class="heatmap-wrapper">
<div id="diagram" class="diagram-container">
<div id="dock-row" class="dock-row"></div>
<div class="warehouse"></div>
</div>
</div>
<div id="tooltip" class="tooltip"></div>
</div>
<script src="scripts/heatmap.js"></script>
</body>
</html>
<script src="scripts/heatmap.js"></script>
</body>
</html>