diff options
Diffstat (limited to 'website/src/pages/index.astro')
| -rw-r--r-- | website/src/pages/index.astro | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/website/src/pages/index.astro b/website/src/pages/index.astro new file mode 100644 index 0000000..74cf934 --- /dev/null +++ b/website/src/pages/index.astro @@ -0,0 +1,11 @@ +--- +import BlogFeed from '../components/BlogFeed.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 /> +</Page>
\ No newline at end of file |
