Initial electronics inventory webapp
KV-store backed Express 5 app for tracking electronic components, their arbitrary fields, and inventory locations (physical, BOM, digital). Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
22
public/index.html
Normal file
22
public/index.html
Normal file
@@ -0,0 +1,22 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>Electronics Inventory</title>
|
||||
<link rel="stylesheet" href="style.css">
|
||||
<link rel="preload" as="fetch" href="/templates.html" crossorigin>
|
||||
</head>
|
||||
<body>
|
||||
<header>
|
||||
<div class="app-title">Electronics Inventory</div>
|
||||
<nav>
|
||||
<button class="nav-btn active" data-section="components">Components</button>
|
||||
<button class="nav-btn" data-section="inventory">Inventory</button>
|
||||
<button class="nav-btn" data-section="fields">Fields</button>
|
||||
</nav>
|
||||
</header>
|
||||
<main id="main"></main>
|
||||
<script type="module" src="app.mjs"></script>
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user