summaryrefslogtreecommitdiff
path: root/src/pages/index.astro
blob: 74cf9347bb1933781ceb60ce30be33dd86032072 (plain)
1
2
3
4
5
6
7
8
9
10
11
---
import BlogFeed from '../components/BlogFeed.astro';
import Me from '../components/Me.astro';
import { SITE_TITLE, SITE_DESCRIPTION } from '../consts';
import Page from '../layouts/Page.astro';
---

<Page title={SITE_TITLE} description={SITE_DESCRIPTION}>
	<Me />
	<BlogFeed hideAuthor />
</Page>