-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(#48): improve subsection formatting
- Loading branch information
1 parent
d5e9436
commit 8d6f2a1
Showing
3 changed files
with
40 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -12,7 +12,6 @@ export const metadata: Metadata = { | |
|
||
/** | ||
* TODO: | ||
* - Correctly format my last experience (Akeneo XP on several lines) | ||
* - Add annexe sections (simpler than regular sections) | ||
* - Add my photo to the CV | ||
* - Compute my age instead of hardcoding it | ||
|
@@ -29,7 +28,7 @@ export default function About() { | |
<Section | ||
title="Contact" | ||
subSections={[ | ||
{ title: 'Address', value: { main: '12 rue Pitre de Lisle du Dreneuc 44200 Nantes, France' } }, | ||
{ title: 'Address', value: { main: '12 rue Pitre de Lisle du Dreneuc, 44200 Nantes, France' } }, | ||
{ title: 'Phone', value: { main: '+33 6 20 45 25 55' } }, | ||
{ title: 'Email', value: { main: '[email protected]' } }, | ||
{ title: 'Nationality', value: { main: 'French' } }, | ||
|
@@ -42,9 +41,12 @@ export default function About() { | |
{ | ||
title: '2014 - Today', | ||
value: { | ||
main: `Software Engineer at Akeneo. Including}: | ||
- Lead Software Engineer from January 2020 to June 2023 | ||
- Senior Software Engineer since July 2023`, | ||
main: 'Software Engineer at Akeneo. Including}:', | ||
isList: true, | ||
sub: [ | ||
{ key: '1', text: 'Lead Software Engineer from January 2020 to June 2023' }, | ||
{ key: '2', text: 'Senior Software Engineer since July 2023' }, | ||
], | ||
}, | ||
}, | ||
{ title: '2010 - 2013', value: { main: 'Earth-Sciences contractual teacher in middle and high school' } }, | ||
|
@@ -58,23 +60,23 @@ export default function About() { | |
title: '2009', | ||
value: { | ||
main: 'PHD in Earth Sciences', | ||
sub: ' Claude Bernard Lyon 1 University, Lyon, France', | ||
sub: [{ key: '1', text: 'Claude Bernard Lyon 1 University, Lyon, France' }], | ||
important: true, | ||
}, | ||
}, | ||
{ | ||
title: '2006', | ||
value: { | ||
main: 'Master in Earth Sciences', | ||
sub: ' Claude Bernard Lyon 1 University, Lyon, France', | ||
sub: [{ key: '1', text: 'Claude Bernard Lyon 1 University, Lyon, France' }], | ||
important: true, | ||
}, | ||
}, | ||
{ | ||
title: '2004', | ||
value: { | ||
main: 'License in Earth Sciences', | ||
sub: ' Claude Bernard Lyon 1 University, Lyon, France', | ||
sub: [{ key: '1', text: 'Claude Bernard Lyon 1 University, Lyon, France' }], | ||
important: true, | ||
}, | ||
}, | ||
|
@@ -86,7 +88,11 @@ export default function About() { | |
{ title: 'Mother tongue', value: { main: 'French', important: true } }, | ||
{ | ||
title: 'Foreign languages', | ||
value: { main: 'English', important: true, sub: 'Good command of both written and spoken language' }, | ||
value: { | ||
main: 'English', | ||
important: true, | ||
sub: [{ key: '1', text: 'Good command of both written and spoken language' }], | ||
}, | ||
}, | ||
]} | ||
/> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters