修改页面风格

This commit is contained in:
2026-06-18 11:07:23 +08:00 Unverified
parent 7c3679e885
commit 9d6de3158e
15 changed files with 1293 additions and 5617 deletions
+14
View File
@@ -0,0 +1,14 @@
---
interface Props {
title: string;
subtitle?: string;
}
const { title, subtitle } = Astro.props;
---
<header class="page-header-card">
<p class="page-header-eyebrow">Bi's Blog</p>
<h1>{title}</h1>
{subtitle && <p class="page-header-subtitle">{subtitle}</p>}
</header>