added socials

This commit is contained in:
nin0 2024-07-29 16:10:40 -04:00
parent af797ba515
commit 161e28d5f3
8 changed files with 72 additions and 0 deletions

View file

@ -1,6 +1,9 @@
---
import Contacts from "../components/Contacts.astro";
import GroupBox from "../components/GroupBox.astro";
import Me from "../components/Me.astro";
import Presence from "../components/Presence.astro";
import Social from "../components/Social.astro";
import Window from "../components/Window.astro";
import BaseLayout from "../layouts/BaseLayout.astro";
---
@ -9,5 +12,15 @@ import BaseLayout from "../layouts/BaseLayout.astro";
<Window title="Home" maxWidth="600px">
<Me />
<Presence />
<GroupBox name="About me">
<p>
I'm a Canadian self-taught software developer that makes things some people find useful in Python, HTML, JavaScript, and Kotlin.
<br/>
I occasionally code with Java or C#, and am currently learning Rust.
</p>
</GroupBox>
<GroupBox name="Reach out">
<Contacts />
</GroupBox>
</Window>
</BaseLayout>