11 lines
256 B
Plaintext
11 lines
256 B
Plaintext
---
|
|
import Base from './Base.astro';
|
|
import PageHero from '../components/PageHero.astro';
|
|
interface Props { title: string }
|
|
const { title } = Astro.props;
|
|
---
|
|
<Base title={title}>
|
|
<PageHero title={title} />
|
|
<div class="placeholder-body"></div>
|
|
</Base>
|