initial commit
This commit is contained in:
commit
d799808203
126 changed files with 16265 additions and 0 deletions
13
components/PageTitle.tsx
Normal file
13
components/PageTitle.tsx
Normal file
|
@ -0,0 +1,13 @@
|
|||
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>
|
||||
)
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue