lomavuokraus/docs/index.html
2025-11-24 22:50:55 +02:00

37 lines
1.3 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<title>Lomavuokraus Docs</title>
<link rel="stylesheet" href="./style.css" />
</head>
<body>
<header>
<h1>Lomavuokraus Documentation</h1>
<div class="meta">Diagram-first docs rendered with Mermaid; tracked in git, not deployed with the app.</div>
</header>
<main class="grid">
<section class="card">
<h2>Contents</h2>
<ul>
<li><a href="./infra.html">Infrastructure</a></li>
<li><a href="./build.html">Build &amp; Deploy</a></li>
<li><a href="./architecture.html">Logical Architecture</a></li>
<li><a href="./sequences.html">Feature Sequences</a></li>
</ul>
</section>
<section class="card">
<h3>How diagrams work</h3>
<ul>
<li>All diagrams use Mermaid (rendered in-browser via CDN; no extra tooling needed).</li>
<li>Graph definitions live inline in the HTML for quick edits.</li>
<li>Docs live in <code>docs/</code>; they are tracked but not shipped with the app.</li>
</ul>
</section>
</main>
<script type="module">
import mermaid from 'https://cdn.jsdelivr.net/npm/mermaid@10/dist/mermaid.esm.min.mjs';
mermaid.initialize({ startOnLoad: true, theme: 'dark' });
</script>
</body>
</html>