31 lines
1.1 KiB
Text
31 lines
1.1 KiB
Text
---
|
|
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 Window from "../components/Window.astro";
|
|
import Button from "./Button.astro";
|
|
import ButtonCollection from "./ButtonCollection.astro";
|
|
import Spacer from "./Spacer.astro";
|
|
---
|
|
<Window title="Home" maxWidth="600px" showClose={true}>
|
|
<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>
|
|
<ButtonCollection>
|
|
<Button position="left" text="Projects (soon)" url="/projects"/>
|
|
<Spacer />
|
|
<Button position="left" text="Code (soon)" url="/code"/>
|
|
<Spacer />
|
|
<Button position="left" text="Blog (ETA: 100 years)" url="/code"/>
|
|
</ButtonCollection>
|
|
</Window>
|