13 lines
334 B
Text
13 lines
334 B
Text
---
|
|
import Me from "../components/Me.astro";
|
|
import Presence from "../components/Presence.astro";
|
|
import Window from "../components/Window.astro";
|
|
import BaseLayout from "../layouts/BaseLayout.astro";
|
|
---
|
|
|
|
<BaseLayout tabTitle="Home - nin0dev">
|
|
<Window title="Home" maxWidth="600px">
|
|
<Me />
|
|
<Presence />
|
|
</Window>
|
|
</BaseLayout>
|