大改变

This commit is contained in:
YoRHa
2026-02-03 19:56:21 +08:00
parent 4b13d255bc
commit 9aa9e44295
545 changed files with 8712 additions and 16168 deletions

View File

@@ -0,0 +1,19 @@
interface PageTitleProps {
title: string;
subtitle?: string;
}
export default function PageTitle({ title, subtitle }: PageTitleProps) {
return (
<div className="mb-8">
<h1 className="text-heading-h2 font-bold text-text-primary dark:text-white">
{title}
</h1>
{subtitle && (
<p className="text-body-large text-text-secondary dark:text-gray-400 mt-2">
{subtitle}
</p>
)}
</div>
);
}