Skip to content

Commit 09d2271

Browse files
committed
add lato and montserrat
1 parent d7b66d3 commit 09d2271

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

pages/_app.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import '../styles/globals.css'
1+
import 'styles/globals.css'
22

33
function MyApp({ Component, pageProps }) {
44
return <Component {...pageProps} />

pages/index.js

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
import styles from 'styles/Home.module.css'
22
import {Header} from 'components'
33

4-
54
export default function Home() {
65
return (
76
<div className={styles.container}>
@@ -11,4 +10,4 @@ export default function Home() {
1110
<Header>Take control of your career</Header>
1211
</div>
1312
)
14-
}
13+
}

styles/globals.css

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,10 @@
1+
@import url('https://fonts.googleapis.com/css2?family=Lato:wght@400;700;900&family=Montserrat:wght@700&display=swap');
2+
13
html,
24
body {
35
padding: 0;
46
margin: 0;
5-
font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen,
6-
Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
7+
font-family: Lato, Montserrat;
78
}
89

910
a {

0 commit comments

Comments
 (0)