40 lines
1.1 KiB
HTML
40 lines
1.1 KiB
HTML
<!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>
|
||
|
||
<!-- BINS‑style 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>
|
||
|