Skip to content

Commit

Permalink
Merge pull request #32 from brunomachadors/31-task-update-portfolio-c…
Browse files Browse the repository at this point in the history
…ontent-and-minor-adjustments

Enhance Educational Background Section Layout
  • Loading branch information
brunomachadors authored Jan 9, 2025
2 parents 41164ff + 38cf949 commit 83b9dd9
Show file tree
Hide file tree
Showing 2 changed files with 76 additions and 35 deletions.
37 changes: 2 additions & 35 deletions src/app/components/AboutSections/AboutSections.tsx
Original file line number Diff line number Diff line change
@@ -1,40 +1,7 @@
'use client';
import { sections } from '@/app/content/about';
import React, { useState } from 'react';

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.',
},
];

export default function AboutSections() {
const [openSection, setOpenSection] = useState<number | null>(null);

Expand All @@ -59,7 +26,7 @@ export default function AboutSections() {
data-test-id="about-description"
>
I&apos;m Bruno Machado, a QA Engineer passionate about software
development, test automation, accessibility, and Shift Left practices.
development.
</p>

{sections.map((section, index) => (
Expand Down
74 changes: 74 additions & 0 deletions src/app/content/about.tsx
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>
),
},
];

0 comments on commit 83b9dd9

Please sign in to comment.