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