jonbio/components/PageTitle.tsx

14 lines
334 B
TypeScript
Raw Permalink Normal View History

2024-10-14 00:18:50 -05:00
import { ReactNode } from 'react'
interface Props {
children: ReactNode
}
export default function PageTitle({ children }: Props) {
return (
<h1 className="text-3xl font-extrabold leading-9 tracking-tight text-gray-900 dark:text-gray-100 sm:text-4xl sm:leading-10 md:text-5xl md:leading-14">
{children}
</h1>
)
}