Files
naps62-yolo 511caf1c78 feat: bench checklist for combined INDX + Gen 2 conversion
Flattens Prusa's three-document route (INDX guide, Gen 2 upgrade guide,
and the combined article) into one linear list of 13 blocks with entry
and stop points. Progress is kept in localStorage; no backend.

Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com>
2026-08-20 17:03:38 +01:00

26 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, viewport-fit=cover" />
<title>INDX + Gen 2 Bench Order</title>
<meta
name="description"
content="A bench checklist for converting a Prusa CORE One with the INDX kit and the Gen 2 upgrade at the same time. Progress is saved in this browser."
/>
<meta name="theme-color" content="#EDEFF1" media="(prefers-color-scheme: light)" />
<meta name="theme-color" content="#111417" media="(prefers-color-scheme: dark)" />
<link rel="icon" href="/favicon.svg" type="image/svg+xml" />
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
rel="stylesheet"
href="https://fonts.googleapis.com/css2?family=Archivo:wght@500;600;700&family=IBM+Plex+Mono:wght@400;500;600&family=IBM+Plex+Sans:wght@400;500;600&display=swap"
/>
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>