blob: d2624c599daa402aef792abc4b496882d34f955d (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
---
import Layout from './Default.astro';
---
<Layout>
<header>
<h1>Test</h1>
<h2>Description</h2>
</header>
</Layout>
<style>
header {
text-align: center;
}
</style>
|