8867d841cb
* Run prettier * Fix package-lock * Use an off-white background, darker text * Use indigo for headings instead of green * Add box shadows to all cards * Remove unused component * Extract out a title component * Fix typo
9 lines
196 B
TypeScript
9 lines
196 B
TypeScript
export function Title(props: { text: string }) {
|
|
const { text } = props
|
|
return (
|
|
<h1 className="text-2xl font-major-mono text-indigo-700 font-bold mt-6 mb-4">
|
|
{text}
|
|
</h1>
|
|
)
|
|
}
|