Skip to content
Snippets Groups Projects
Commit f5557d99 authored by Jacopo Gasparetto's avatar Jacopo Gasparetto
Browse files

Add title component

parent e444f0e4
No related branches found
No related tags found
No related merge requests found
type Props = {
children: string
}
export const Title = ({ children }: Props) => {
return (
<div className="mb-4 text-4xl font-extrabold leading-none tracking-tight text-gray-900 md:text-5xl lg:text-6xl dark:text-white">
{children}
</div>
)
}
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment