migrate to astro #1
2 changed files with 23 additions and 20 deletions
21
src/components/MainWindow.astro
Normal file
21
src/components/MainWindow.astro
Normal 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>
|
|
@ -1,28 +1,10 @@
|
||||||
---
|
---
|
||||||
import Contacts from "../components/Contacts.astro";
|
|
||||||
import FearOfTechnology from "../components/FearOfTechnology.astro";
|
import FearOfTechnology from "../components/FearOfTechnology.astro";
|
||||||
import GroupBox from "../components/GroupBox.astro";
|
import MainWindow from "../components/MainWindow.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";
|
import BaseLayout from "../layouts/BaseLayout.astro";
|
||||||
---
|
---
|
||||||
|
|
||||||
<BaseLayout tabTitle="Home - nin0dev">
|
<BaseLayout tabTitle="Home - nin0dev">
|
||||||
<FearOfTechnology />
|
<FearOfTechnology />
|
||||||
<Window title="Home" maxWidth="600px">
|
<MainWindow />
|
||||||
<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>
|
</BaseLayout>
|
||||||
|
|
Loading…
Reference in a new issue