<about/>

const hireMe = (education, skills, workExperience) => {

if (skills === false) return;

const aboutMe = {

name: 'André Marques',

year: 1993,

city: 'Lisbon',

country: 'Portugal',

email: 'andregm_7@hotmail.com',

role: 'Frontend Developer'

}

education() {

2016 &&

'Graduated in Law'

2017 &&

'Frontend and Responsive Web Development',

'@ EDIT. - Disruptive Digital Education',

'248h intensive course in HTML, CSS and JavaScript'

}

skills() {

mainSkills = [

'JavaScript',

'Typescript',

'React',

'Vue',

'Svelte',

'Node',

'Jest',

'HTML',

'CSS',

]

extras = [

'jQuery',

'SASS',

'Next.js',

'Netlify',

'REST',

'GraphQL',

'Progressive Web Apps',

'Webpack',

]

workExperience(company, role, years, jobDescription, projects) {

company = 'Fullsix Portugal';

role = 'Frontend Developer';

years = 2;

jobDescription = 'Worked at Fullsix for 2 years as a Frontend Developer. Dealt with high profile clients, since this is one of Portugal's biggest digital agencies. Worked in a team environment with constant communication with UI and UX teams, as well as backend developers.';

projects = 'Ageas Portugal' + 'Seguro Directo' + 'Galp Corporate Event';

}

currentJob(company, role, from) {

company = 'Farfetch';

role = 'Software Engineer - Frontend';

from = June 2019;

}

return education, skills, workExperience;

}

if (needNewWebsite === true) hireMe();