tailwind-nextjs-blog/components/PageTitle.tsx

14 lines
337 B
TypeScript
Raw Normal View History

2022-10-17 23:37:01 +08:00
import { ReactNode } from 'react';
interface Props {
2022-10-17 23:37:01 +08:00
children: ReactNode;
}
export default function PageTitle({ children }: Props) {
2022-07-17 21:40:41 +08:00
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>
2022-10-17 23:37:01 +08:00
);
2022-07-17 21:40:41 +08:00
}