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

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