
Xabier Lameiro | Software Architect · Next.js & React
index.tsx
knowledge.module.css
contact.json
_27import React from 'react';_27import styles from './knowledge.module.css';_27_27type Props = {_27 name?: string;_27};_27const name = 'Xabier Lameiro';_27_27const App = ({ name = name }: Props) => {_27 return (_27 <main className={`${styles.experience}`}>_27_27 <h1>👋, my name is {name}!</h1>_27_27 <p className={`${styles.education}`}>_27 I'm a Software Architect. _27 I have worked in the banking and _27 retail sector for companies like CaixaBank, _27 Openbank and Inditex. I like_27 web development, applications,_27 automations and the IOT._27 </p>_27 </main>_27 );_27};_27_27export { App, App as default };
1import React from 'react';2import styles from './knowledge.module.css';34type Props = {5 name?: string;6};7const name = 'Xabier Lameiro';89const App = ({ name = name }: Props) => {10 return (11 <main className={`${styles.experience}`}>1213 <h1>👋, my name is {name}!</h1>1415 <p className={`${styles.education}`}>16 I'm a Software Architect. 17 I have worked in the banking and 18 retail sector for companies like CaixaBank, 19 Openbank and Inditex. I like20 web development, applications,21 automations and the IOT.22 </p>23 </main>24 );25};2627export { App, App as default };index.tsx
knowledge.module.css
contact.json
_21import React from 'react';_21import styles from './knowledge.module.css';_21_21type Props = {_21 name?: string;_21};_21_21const App = ({ name = 'Xabier Lameiro' }: Props) => {_21 return (_21 <main className={`${styles.experience} ${styles.education}`}>_21 <h1>👋, my name is {name}!</h1>_21 <p>_21 I'm a Software Architect. I have worked in the banking and retail_21 sector for companies like CaixaBank, Openbank and Inditex. I like web _21 development, applications, automations and the IOT._21 </p>_21 </main>_21 );_21};_21_21export { App, App as default };
1import React from 'react';2import styles from './knowledge.module.css';34type Props = {5 name?: string;6};78const App = ({ name = 'Xabier Lameiro' }: Props) => {9 return (10 <main className={`${styles.experience} ${styles.education}`}>11 <h1>👋, my name is {name}!</h1>12 <p>13 I'm a Software Architect. I have worked in the banking and retail14 sector for companies like CaixaBank, Openbank and Inditex. I like web 15 development, applications, automations and the IOT.16 </p>17 </main>18 );19};2021export { App, App as default };