aboutsummaryrefslogtreecommitdiff
path: root/src/pages/index.astro
blob: e7ae23dff1b166d7dd56bf056581e9841540dd58 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
---
import Layout from "../layouts/BaseLayout.astro";
import LatestPostsSection from "../components/Sections/LatestPosts.astro";
import SocialLinksSection from "../components/Sections/SocialLinks.astro";
import WelcomeSection from "../components/Sections/Welcome.astro";
---

<Layout>
	<WelcomeSection />
	<SocialLinksSection />
	<LatestPostsSection />
</Layout>