forked from nin0/website
10 lines
238 B
Text
10 lines
238 B
Text
---
|
|
import Window from "../components/Window.astro";
|
|
import BaseLayout from "../layouts/BaseLayout.astro";
|
|
---
|
|
|
|
<BaseLayout tabTitle="Home - nin0dev">
|
|
<Window title="Home" maxWidth="600px">
|
|
<p>I love astro</p>
|
|
</Window>
|
|
</BaseLayout>
|