14 lines
412 B
Plaintext
14 lines
412 B
Plaintext
---
|
|
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 maxEntries={3} />
|
|
<LinksFeed hideAuthor maxEntries={5} />
|
|
</Page>
|