-
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.
Merge pull request #32 from brunomachadors/31-task-update-portfolio-c…
…ontent-and-minor-adjustments Enhance Educational Background Section Layout
- Loading branch information
Showing
2 changed files
with
76 additions
and
35 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
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 |
---|---|---|
@@ -0,0 +1,74 @@ | ||
export const sections = [ | ||
{ | ||
title: 'Personal Information', | ||
content: ( | ||
<div> | ||
<p> | ||
<strong>Location:</strong> Porto, Portugal | ||
</p> | ||
<p> | ||
<strong>Nationality:</strong> Brazilian | ||
</p> | ||
<p> | ||
<strong>Year of Birth:</strong> 1986 | ||
</p> | ||
</div> | ||
), | ||
}, | ||
|
||
{ | ||
title: 'My Journey into QA', | ||
content: | ||
'I started working in QA by chance and quickly realized that I have a strong aptitude for it. With over 17 years of experience in testing, I have specialized in test automation since 2017.', | ||
}, | ||
{ | ||
title: 'Focus on Shift Left Practices', | ||
content: | ||
'I actively promote early involvement of QA in the development process, collaborating with developers to implement test frameworks and identify potential issues before they arise.', | ||
}, | ||
{ | ||
title: 'Collaboration and Mentoring', | ||
content: | ||
'I value building strong relationships with colleagues, fostering a collaborative work environment, and mentoring professionals in the testing field.', | ||
}, | ||
{ | ||
title: 'Educational Background - Technology', | ||
content: ( | ||
<div className="flex flex-col gap-4"> | ||
<p className="pt-2"> | ||
<strong>University:</strong> União Educacional de Brasília (UNEB) | ||
</p> | ||
<p className="pt-2"> | ||
<strong>Course:</strong> Technologist in Information Technology | ||
</p> | ||
<p className="pt-2"> | ||
<strong>Period:</strong> 2008 - 2010 | ||
</p> | ||
<p className="pt-2"> | ||
<strong>Description:</strong> Emphasis on Data Processing and | ||
Programming. | ||
</p> | ||
</div> | ||
), | ||
}, | ||
{ | ||
title: 'Educational Background - Game Development', | ||
content: ( | ||
<div className="flex flex-col gap-4"> | ||
<p className="pt-2"> | ||
<strong>University:</strong> Pontifícia Universidade Católica do Rio | ||
Grande do Sul (PUCRS) | ||
</p> | ||
<p className="pt-2"> | ||
<strong>Course:</strong> Postgraduate in Game Development | ||
</p> | ||
<p className="pt-2"> | ||
<strong>Period:</strong> 2011 - 2012 | ||
</p> | ||
<p className="pt-2"> | ||
Focused on Game Design, Programming, and 3D Modeling. | ||
</p> | ||
</div> | ||
), | ||
}, | ||
]; |