18 lines
396 B
Plaintext
18 lines
396 B
Plaintext
---
|
|
import BaseLayout from '../layouts/BaseLayout.astro';
|
|
import ParallaxHero from '../components/ParallaxHero.astro';
|
|
import HomelabStatus from '../components/HomelabStatus.astro';
|
|
import RecentPosts from '../components/RecentPosts.astro';
|
|
---
|
|
|
|
<BaseLayout title="Home">
|
|
<ParallaxHero />
|
|
|
|
<!-- <RecentPosts /> -->
|
|
|
|
<hr class="glow-divider container" />
|
|
|
|
<HomelabStatus />
|
|
|
|
</BaseLayout>
|