remove react

This commit is contained in:
darwinx64 2025-04-20 23:52:17 -05:00
parent 98412adab9
commit 0bb40ff89f
No known key found for this signature in database
29 changed files with 430 additions and 1730 deletions

View file

@ -1,29 +0,0 @@
---
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";
---
<script>
import { WindowManager } from "@models/WindowManager";
document
.querySelector("#show-code-window")
.addEventListener("click", () => WindowManager.topmost = document.getElementById("window-code-window"));
</script>
<Window title="Home" maxWidth="600px" showClose={false}>
<Me client:only />
<Button position="left" id="show-code-window">My code</Button>
<GroupBox name="About me">
<p>
I'm a Canadian self-taught software developer.
I also make things that some people use with varying degrees of usefulness.
</p>
</GroupBox>
<GroupBox name="Reach out">
<Contacts />
</GroupBox>
</Window>