rojects/workspace/boards/index.html

58 lines
1.7 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Boards — Roject</title>
<link rel="stylesheet" href="../_assets_/styles.css">
<link rel="stylesheet" href="../_assets_/nav.css">
</head>
<body>
<div class="page">
<header>
<p class="date">Boards</p>
<h1>Roject</h1>
<p class="subtitle">Planning and tracking boards for development work.</p>
</header>
<section>
<div class="card">
<h3><a href="tasks.html">Tasks</a></h3>
<p>
Current development sprint. Active work items with To Do, In Progress, and Done lanes.
We try to keep this focused — only things being worked on now or very soon.
</p>
</div>
<div class="card">
<h3><a href="bugs.html">Bugs</a></h3>
<p>
Known issues we want to fix later. Organized by severity: Critical for things that
break correctness or security, Visual/UI/UX for things that look or feel wrong.
</p>
</div>
<div class="card">
<h3><a href="backlog.html">Backlog</a></h3>
<p>
Big user stories and visions. Too complex or vague to be tasks, but important for
understanding the direction. Lanes: MVP for the core product vision,
Nice To Have for quality-of-life additions, To The Moon for longer-horizon ambitions.
</p>
</div>
</section>
<footer>
Roject &mdash; boards
</footer>
</div>
<script>var NAV_ROOT = '../';</script>
<script src="../_assets_/nav-data.js"></script>
<script src="../_assets_/nav.js"></script>
</body>
</html>