aboutsummaryrefslogtreecommitdiff
path: root/src/layouts/Page.astro
blob: b0f202a0508fd74e3b17d443e817e0a5c115388e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
---
import Layout from './Default.astro';
const { title, description } = Astro.props;
---

<Layout title=`${title} | Andrew Lee` description={description}>
    <header>
        <h1>{title}</h1>
        <h2>{description}</h2>
    </header>
</Layout>

<style>
    header {
        text-align: center;
    }
</style>