1
0
Fork 0

feat(fs.dev): Added theme support

This commit is contained in:
Joost De Cock 2021-12-11 14:04:05 +01:00
parent 84ffe26a76
commit e1ecd0cb98
26 changed files with 834 additions and 96 deletions

View file

@ -0,0 +1,13 @@
const H1 = props => (
<h1
className={`
text-4xl py-4 font-bold
lg:text-6xl
`}
style={{letterSpacing: '-0.15rem'}}
>
{props.children}
</h1>
)
export default H1