I've created a hook-like function with my personal information so you can use it in your components and get to know me better 😋
const usePol = () => ({
aboutMe: [
`I'm a full stack software engineer`,
`I'm in love with React so if I've a choice, I prefer to do frontend development`,
`I mainly work with the React and .NET stack`
],
contact: {
email: 'pbr1111@gmail.com',
linkedin: 'https://www.linkedin.com/in/pol-bonastre-romera-b685325a/',
github: window.location.href
},
technologies: {
currentStack: [
'React ❤',
'TypeScript',
'.NET',
'Azure',
'Git',
'Docker',
'Azure DevOps',
'Github',
'SQL Server'
],
other: [
'Next.js',
'Angular',
'React Native (Expo)',
'Ionic',
'Kubernetes'
]
}
});
export { usePol };