File size: 321 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 12 13 |
type Props = {
children: string;
};
export default function PostTitle({ children }: Props) {
return (
<h1
className="text-6xl md:text-7xl lg:text-8xl font-bold tracking-tighter leading-tight md:leading-none mb-12 text-center md:text-left"
dangerouslySetInnerHTML={{ __html: children }}
/>
);
}
|