Skip to content

Commit

Permalink
Add adsense to correct file
Browse files Browse the repository at this point in the history
  • Loading branch information
ReinderVosDeWael committed Jul 5, 2024
1 parent 5905d92 commit 5a18b1a
Show file tree
Hide file tree
Showing 4 changed files with 55 additions and 18 deletions.
44 changes: 41 additions & 3 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 2 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,13 @@
"react-bootstrap": "^2.6.0",
"react-div-100vh": "^0.7.0",
"react-dom": "latest",
"react-helmet": "^6.1.0",
"react-icons": "^4.6.0"
},
"devDependencies": {
"@types/node": "^20.10.0",
"@types/react": "18.2.39",
"@types/react-helmet": "^6.1.11",
"@typescript-eslint/eslint-plugin": "^5.54.1",
"@typescript-eslint/parser": "^5.62.0",
"eslint": "^8.42.0",
Expand Down
13 changes: 12 additions & 1 deletion pages/_app.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,25 @@
import React from 'react';
import 'bootstrap/dist/css/bootstrap.min.css';
import '../styles/styles.css';
import {Helmet} from "react-helmet";

/**
* I don't know what this does.
* ./confused.jpeg
* @return {Component}
*/
function MyApp({Component, pageProps}) {
return <Component {...pageProps} />;
return <>
<Helmet>
<title>Resume</title>
<meta name="description" content="Resume of Reinder Vos de Wael"/>
<meta name="keywords" content="developer, resume"/>
<meta name="author" content="Reinder Vos de Wael" />
<script async src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js?client=ca-pub-3320911161905431"
crossorigin="anonymous"></script>
</Helmet>
<Component {...pageProps} />;
</>
}

export default MyApp;
14 changes: 0 additions & 14 deletions src/app.html

This file was deleted.

0 comments on commit 5a18b1a

Please sign in to comment.