schmelczer-dev/src/layouts/Page.astro
Andras Schmelczer e9b6035c58
Some checks failed
Deploy to Pages / build (pull_request) Failing after 1m5s
AI fixes
2026-05-24 10:34:24 +01:00

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>