Adds Links page and fixes blog feed

This commit is contained in:
Joe Carstairs
2024-06-05 09:38:10 +01:00
parent b5a434c959
commit f977ee338c
8 changed files with 111 additions and 5 deletions

View File

@@ -1,5 +1,6 @@
---
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';
@@ -8,4 +9,5 @@ import Page from '../layouts/Page.astro';
<Page title={SITE_TITLE} description={SITE_DESCRIPTION}>
<Me />
<BlogFeed hideAuthor />
<LinksFeed hideAuthor />
</Page>