feat(web): PageTitle h1 component + story (#57)

This commit is contained in:
2026-06-07 17:09:30 +02:00
parent 03f6e1d7ed
commit d3e88be70f
2 changed files with 32 additions and 0 deletions
+13
View File
@@ -0,0 +1,13 @@
import type { ComponentProps } from "react";
import { cn } from "@/lib/utils";
export function PageTitle({ className, ...props }: ComponentProps<"h1">) {
return (
<h1
data-slot="page-title"
className={cn("text-2xl font-semibold tracking-tight", className)}
{...props}
/>
);
}