12 lines
331 B
Plaintext
12 lines
331 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 />
|
|
</Page>
|