Created display font and added them to titles.

This commit is contained in:
John Costa
2022-01-03 01:20:15 +00:00
parent a953517c10
commit 59fcad9100
2 changed files with 7 additions and 3 deletions

View File

@ -48,12 +48,12 @@ const FrontPage = () => {
<div className="w-full h-3/5 flex justify-center items-center">
<div className="flex flex-col gap-4 justify-center items-center">
<AppearText
className="font-mono text-7xl text-frost-400"
className="font-display font-bold text-7xl text-frost-400"
text="JOHN COSTA"
delay={750}
/>
<AppearText
className="font-mono text-5xl text-frost-200"
className="font-display font-bold text-5xl text-frost-200"
text="DEVELOPER"
delay={1500}
/>

View File

@ -27,7 +27,11 @@ module.exports = {
purple: '#B48EAD',
},
},
extend: {},
extend: {
fontFamily: {
display: ['Open Sans'],
},
},
},
variants: {
extend: {},