1 | import Head from 'next/head'; |
||
2 | import { PaperPage } from 'src/components/PaperPage/PaperPage'; |
||
3 | import resumeYml from 'src/data/resume.yml'; |
||
4 | |||
5 | const ResumePage = ({ resume }) => ( |
||
0 ignored issues
–
show
introduced
by
![]() |
|||
6 | <> |
||
7 | <Head> |
||
8 | <link href="https://fonts.googleapis.com/css2?family=Raleway:wght@700&display=swap" media="all" rel="stylesheet" /> |
||
9 | </Head> |
||
10 | <PaperPage resume={resume} /> |
||
11 | </> |
||
12 | ); |
||
13 | |||
14 | const getStaticProps = async () => ({ |
||
15 | props: { |
||
16 | resume: resumeYml, |
||
17 | }, |
||
18 | }); |
||
19 | |||
20 | export { getStaticProps }; |
||
21 | export default ResumePage; |
||
22 |