Files
joeac.net/website/src/pages/index.astro
2024-07-15 16:14:41 +01:00

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>