Some checks failed
Deploy to Pages / build (pull_request) Failing after 1m5s
19 lines
410 B
Text
19 lines
410 B
Text
---
|
|
import type { ComponentProps } from 'astro/types';
|
|
import Base from './Base.astro';
|
|
|
|
type Props = ComponentProps<typeof Base>;
|
|
|
|
const { title, description } = Astro.props;
|
|
---
|
|
|
|
<Base {...Astro.props}>
|
|
<div class="page-shell">
|
|
<header class="page-header">
|
|
<slot name="breadcrumbs" />
|
|
<h1>{title}</h1>
|
|
{description && <p>{description}</p>}
|
|
</header>
|
|
<slot />
|
|
</div>
|
|
</Base>
|