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 Frontend developer. _27 I have worked in the banking and _27 retail sector for companies like CaixaBank, _27 Openbak 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 };
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 Frontend developer. I have worked in the banking and retail_21 sector for companies like CaixaBank, Openbak and Inditex. I like web _21 development, applications, automations and the IOT._21 </p>_21 </main>_21 );_21};_21_21export { App, App as default };