28 lines
930 B
HTML
28 lines
930 B
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>Warehouse Heat Map</title>
|
|
</head>
|
|
<body>
|
|
<header class="main-header">
|
|
<img src="/image/logo.png" alt="Amazon Logo" class="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="diagram-container">
|
|
<div id="dock-row" class="dock-row"></div>
|
|
<div class="warehouse"></div>
|
|
</div>
|
|
</div>
|
|
|
|
<script src="scripts/heatmap.js"></script>
|
|
</body>
|
|
</html> |