Files
todo-tree-chopper/index.html

34 lines
999 B
HTML
Raw Normal View History

2025-12-13 14:09:00 +01:00
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="/src/assets/style.css" />
<script src="https://miro.com/app/static/sdk/v2/miro.js"></script>
<title>TODO Tree Chopper</title>
</head>
<body>
<div id="root" aria-hidden="true">
<div class="grid container">
<div class="cs1 ce12">
2025-12-13 22:02:20 +01:00
<h1 style="font-size: large">TODO Tree Chopper</h1>
2025-12-13 14:09:00 +01:00
<p>
2025-12-13 22:02:20 +01:00
Efficiently chop down your TODO trees in Miro 👌🪓
2025-12-13 14:09:00 +01:00
</p>
</div>
2025-12-13 22:02:20 +01:00
<img src="/src/assets/todo-choppers.gif"/>
2025-12-13 14:09:00 +01:00
<div class="cs1 ce12">
<a
class="button button-primary"
2025-12-13 22:02:20 +01:00
href="https://github.com/DrHaid/todo-tree-chopper"
2025-12-13 14:09:00 +01:00
target="_blank"
>
2025-12-13 22:02:20 +01:00
GitHub
2025-12-13 14:09:00 +01:00
</a>
</div>
</div>
</div>
<script type="module" src="/src/index.ts"></script>
</body>
</html>