Files
blog/src/components/PageHeaderCard.astro
T
2026-06-18 21:59:07 +08:00

17 lines
348 B
Plaintext

---
import { siteConfig } from '../../site.config.mjs';
interface Props {
title: string;
subtitle?: string;
}
const { title, subtitle } = Astro.props;
---
<header class="page-header-card">
<p class="page-header-eyebrow">{siteConfig.site.name}</p>
<h1>{title}</h1>
{subtitle && <p class="page-header-subtitle">{subtitle}</p>}
</header>