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

<Layout title=`${title} - Andrew Lee` description={description}>
    <header>
        <h1 class="header-text">{title}</h1>
        <h2 class="header-text">{description}</h2>
    </header>
    <div class="container">
        <slot />
    </div>
</Layout>