added my PGP key

This commit is contained in:
nin0 2024-09-02 18:24:55 -04:00
parent 3c83b759a8
commit 651987661f
No known key found for this signature in database
GPG key ID: 3FA8F96ABAE04214
5 changed files with 41 additions and 3 deletions

View file

@ -8,7 +8,7 @@ import Button from "./Button.astro";
import ButtonCollection from "./ButtonCollection.astro";
import Spacer from "./Spacer.astro";
---
<Window title="Home" maxWidth="600px">
<Window title="Home" maxWidth="600px" showClose={true}>
<Me />
<Presence />
<GroupBox name="About me">

View file

@ -24,7 +24,7 @@ const {title, showClose, maxWidth} = Astro.props
{
showClose &&
<div class="title-bar-controls">
<button aria-label="Close"></button>
<button aria-label="Close" onclick="window.close()"></button>
</div>
}
</div>