Skip to content

Commit a890c6a

Browse files
committed
fix: style docs page title differently
1 parent 6d3f78f commit a890c6a

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

app/docs/[...slug]/page.tsx

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,9 @@ export default async function DocPage({ params }: Param) {
2323
return (
2424
<DocsPage toc={page.data.toc}>
2525
<DocsBody>
26-
<h1>{page.data.title}</h1>
26+
<h1 className="mb-4 text-3xl font-extrabold tracking-tight md:text-4xl">
27+
{page.data.title}
28+
</h1>
2729
<Mdx components={getMDXComponents()} />
2830
</DocsBody>
2931
</DocsPage>

0 commit comments

Comments
 (0)