feat: update default webpage with new buttons

This commit is contained in:
jabuxas 2024-10-15 15:26:55 -03:00
parent b10bdf21b5
commit 8bf4d7e5c4
2 changed files with 23 additions and 3 deletions

View File

@ -11,9 +11,19 @@
<body>
<h1>abyss paste</h1>
<div class="top-down">
<div>
<a href="/tree">
<button>files uploaded</button>
</a>
<a href="/upload">
<button>go to upload</button>
</a>
</div>
<a href="/last">
<button>last uploaded file</button>
</a>
</div>
<footer>
abyss paste - powered by
<a href="https://github.com/jabuxas/abyss" target="_blank">abyss</a>

View File

@ -42,3 +42,13 @@ footer a {
text-decoration: none;
font-weight: bold;
}
div {
display: flex;
gap: 10px;
}
.top-down {
flex-direction: column;
align-items: center;
}