Issues (32)

src/pages/resume.js (1 issue)

Severity
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
'resume' is missing in props validation
Loading history...
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