Skip to content

Commit

Permalink
fix: add current Obat experience to CV
Browse files Browse the repository at this point in the history
  • Loading branch information
damien-carcel committed Nov 20, 2024
1 parent 3357e6f commit 1748249
Show file tree
Hide file tree
Showing 5 changed files with 26 additions and 13 deletions.
1 change: 0 additions & 1 deletion .node-version

This file was deleted.

25 changes: 22 additions & 3 deletions __tests__/__snapshots__/snapshot.tsx.snap
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ exports[`renders CV page 1`] = `
class="subsection_value"
style="font-weight: normal;"
>
March 28, 1982 (41 years old)
March 28, 1982 (42 years old)
</div>
</div>
</div>
Expand All @@ -159,7 +159,7 @@ exports[`renders CV page 1`] = `
<div
class="subsection-title"
>
2014 - Today
Feb. 2024 - Today
</div>
<div
class="subsection-value"
Expand All @@ -168,7 +168,26 @@ exports[`renders CV page 1`] = `
class="subsection_value"
style="font-weight: normal;"
>
Software Engineer at Akeneo. Including}:
Senior Software Engineer at Obat
</div>
</div>
</div>
<div
class="subsection"
>
<div
class="subsection-title"
>
Dec. 2014 - Jan. 2024
</div>
<div
class="subsection-value"
>
<div
class="subsection_value"
style="font-weight: normal;"
>
Software Engineer at Akeneo. Including:
</div>
<ul>
<li>
Expand Down
3 changes: 0 additions & 3 deletions package-lock.json

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

3 changes: 0 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,6 @@
"test:ci": "jest --ci",
"typecheck": "tsc -b"
},
"engines": {
"node": ">=20.0.0 <21.0.0"
},
"dependencies": {
"next": "^14.2.10",
"react": "^18.2.0",
Expand Down
7 changes: 4 additions & 3 deletions src/app/cv/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -32,16 +32,17 @@ export default function Cv() {
{ title: 'Phone', value: { main: '+33 6 20 45 25 55' } },
{ title: 'Email', value: { main: '[email protected]' } },
{ title: 'Nationality', value: { main: 'French' } },
{ title: 'Date of birth', value: { main: 'March 28, 1982 (41 years old)' } },
{ title: 'Date of birth', value: { main: 'March 28, 1982 (42 years old)' } },
]}
/>
<Section
title="Experiences"
subSections={[
{ title: 'Feb. 2024 - Today', value: { main: 'Senior Software Engineer at Obat' } },
{
title: '2014 - Today',
title: 'Dec. 2014 - Jan. 2024',
value: {
main: 'Software Engineer at Akeneo. Including}:',
main: 'Software Engineer at Akeneo. Including:',
isList: true,
sub: [
{ key: '1', text: 'Lead Software Engineer from January 2020 to June 2023' },
Expand Down

0 comments on commit 1748249

Please sign in to comment.