Files
joeac.net/website/src/pages/index.astro
T
2026-02-20 09:48:50 +00:00

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>