blob: c1f63e89da5a43d1c1af579a9463ea5d7ae8b2a1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
---
import BlogFeed from '../components/BlogFeed.astro';
import LinksFeed from '../components/LinksFeed.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 hideSubheadings maxEntries={1} />
<LinksFeed hideAuthor maxEntries={1} />
</Page>
|