Gwk-Cultural-Park/components/PostTitle.tsx

8 lines
236 B
TypeScript
Raw Permalink Normal View History

2024-09-07 01:40:25 +00:00
export default function PostTitle({ children }) {
return (
<h1 className="mb-12 text-center text-6xl font-bold leading-tight tracking-tighter md:text-left md:text-7xl md:leading-none lg:text-8xl">
{children}
</h1>
)
}