From 38cf9495526a4b54968aa3b646c0f07d6ff52199 Mon Sep 17 00:00:00 2001
From: brunomachadors
Date: Thu, 9 Jan 2025 11:07:56 +0000
Subject: [PATCH] update bout section
---
.../AboutSections/AboutSections.tsx | 37 +---------
src/app/content/about.tsx | 74 +++++++++++++++++++
2 files changed, 76 insertions(+), 35 deletions(-)
create mode 100644 src/app/content/about.tsx
diff --git a/src/app/components/AboutSections/AboutSections.tsx b/src/app/components/AboutSections/AboutSections.tsx
index 6f9f396..a69d7d7 100644
--- a/src/app/components/AboutSections/AboutSections.tsx
+++ b/src/app/components/AboutSections/AboutSections.tsx
@@ -1,40 +1,7 @@
'use client';
+import { sections } from '@/app/content/about';
import React, { useState } from 'react';
-const sections = [
- {
- title: 'Personal Information',
- content: (
-
-
- Location: Porto, Portugal
-
-
- Nationality: Brazilian
-
-
- Year of Birth: 1986
-
-
- ),
- },
- {
- 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(null);
@@ -59,7 +26,7 @@ export default function AboutSections() {
data-test-id="about-description"
>
I'm Bruno Machado, a QA Engineer passionate about software
- development, test automation, accessibility, and Shift Left practices.
+ development.
{sections.map((section, index) => (
diff --git a/src/app/content/about.tsx b/src/app/content/about.tsx
new file mode 100644
index 0000000..2b80777
--- /dev/null
+++ b/src/app/content/about.tsx
@@ -0,0 +1,74 @@
+export const sections = [
+ {
+ title: 'Personal Information',
+ content: (
+
+
+ Location: Porto, Portugal
+
+
+ Nationality: Brazilian
+
+
+ Year of Birth: 1986
+
+
+ ),
+ },
+
+ {
+ 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: (
+
+
+ University: União Educacional de Brasília (UNEB)
+
+
+ Course: Technologist in Information Technology
+
+
+ Period: 2008 - 2010
+
+
+ Description: Emphasis on Data Processing and
+ Programming.
+
+
+ ),
+ },
+ {
+ title: 'Educational Background - Game Development',
+ content: (
+
+
+ University: Pontifícia Universidade Católica do Rio
+ Grande do Sul (PUCRS)
+
+
+ Course: Postgraduate in Game Development
+
+
+ Period: 2011 - 2012
+
+
+ Focused on Game Design, Programming, and 3D Modeling.
+
+
+ ),
+ },
+];