34 lines
999 B
HTML
34 lines
999 B
HTML
<!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">
|
|
<h1 style="font-size: large">TODO Tree Chopper</h1>
|
|
<p>
|
|
Efficiently chop down your TODO trees in Miro 👌🪓
|
|
</p>
|
|
</div>
|
|
<img src="/src/assets/todo-choppers.gif"/>
|
|
<div class="cs1 ce12">
|
|
<a
|
|
class="button button-primary"
|
|
href="https://github.com/DrHaid/todo-tree-chopper"
|
|
target="_blank"
|
|
>
|
|
GitHub
|
|
</a>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<script type="module" src="/src/index.ts"></script>
|
|
</body>
|
|
</html>
|