move mainwindow to component

This commit is contained in:
nin0dev 2024-07-29 16:30:20 -04:00
parent 0ee0b19d16
commit 6d7b18dc01
2 changed files with 23 additions and 20 deletions

View file

@ -0,0 +1,21 @@
---
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";
---
<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>

View file

@ -1,28 +1,10 @@
---
import Contacts from "../components/Contacts.astro";
import FearOfTechnology from "../components/FearOfTechnology.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 MainWindow from "../components/MainWindow.astro";
import BaseLayout from "../layouts/BaseLayout.astro";
---
<BaseLayout tabTitle="Home - nin0dev">
<FearOfTechnology />
<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>
<MainWindow />
</BaseLayout>