internal corporate restructuring

This commit is contained in:
nin0 2025-03-15 22:03:19 -04:00
parent 22251c3b2b
commit 6015db1f4f
Signed by: nin0
SSH key fingerprint: SHA256:NOoDnFVvZNFvqfXCIhzr6oCTDImZAbTTuyAysZ8Ufk8
37 changed files with 1207 additions and 348 deletions

View file

@ -0,0 +1,36 @@
---
import Contacts from "./Contacts.astro";
import GroupBox from "@components/GroupBox.astro";
import Me from "./Me";
import Window from "@components/Window.astro";
import Button from "@components/Button.astro";
import ButtonCollection from "@components/ButtonCollection.astro";
import Spacer from "@components/Spacer.astro";
---
<script>
document
.querySelector("#show-code-window")
.addEventListener("click", () => {
// @ts-ignore
document.querySelector("#window-code-window").style.display =
"block";
});
</script>
<Window title="Home" maxWidth="600px" showClose={false}>
<Me client:only />
<ButtonCollection>
<Button position="left" text="My code" id="show-code-window" />
</ButtonCollection>
<GroupBox name="About me">
<p>
I'm a Canadian self-taught software developer.
<br />
I also make things that some people use with varying degrees of usefulness.
</p>
</GroupBox>
<GroupBox name="Reach out">
<Contacts />
</GroupBox>
</Window>