adds microlog index page to website

This commit is contained in:
2026-04-25 13:13:20 +01:00
parent f78387413a
commit 52b254ff59
+13
View File
@@ -0,0 +1,13 @@
---
import { SITE_TITLE, SITE_DESCRIPTION } from '../../consts';
import MicrologFeed from '../../components/MicrologFeed.astro';
import Page from '../../layouts/Page.astro';
---
<Page title={SITE_TITLE} description={SITE_DESCRIPTION}>
<MicrologFeed headingLevel={1}>
<!-- <section>
<p><a href="/blog/subscribe">How to subscribe to this blog</a></p>
</section> -->
</MicrologFeed>
</Page>