mirror of
https://github.com/kogakure/website-astro-stefanimhoff.de.git
synced 2026-02-03 20:15:27 +00:00
12 lines
257 B
Plaintext
12 lines
257 B
Plaintext
---
|
|
import BaseLayout from '../layouts/BaseLayout.astro';
|
|
import { Headline } from '../components';
|
|
|
|
const title = 'Homepage';
|
|
const description = '…';
|
|
---
|
|
|
|
<BaseLayout title={title} description={description}>
|
|
<Headline>Homepage</Headline>
|
|
</BaseLayout>
|