render articles

This commit is contained in:
2026-08-22 17:57:54 -05:00
parent 1073b794d6
commit 6f21248132
25 changed files with 991 additions and 433 deletions
@@ -0,0 +1,17 @@
import { getString } from "./BlockHelpers";
export default function TitleBlock({
content,
}: {
content: Record<string, unknown>;
}) {
const text = getString(content, "text");
if (!text) return null;
return (
<h2 className="mb-6 mt-12 text-3xl font-bold leading-tight text-tb1 md:text-4xl">
{text}
</h2>
);
}