Cookies
This website uses cookies to improve the user experience, more information on the legal information path.
Code
0
years
0
mons
0
days
0
hour
0
mins
0
secs
Sat16Mar8:20 PM
This is the background image
index.tsx
knowledge.module.css
contact.json

_27
import React from 'react';
_27
import styles from './knowledge.module.css';
_27
_27
type Props = {
_27
name?: string;
_27
};
_27
const name = 'Xabier Lameiro';
_27
_27
const 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&apos;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
_27
export { App, App as default };

index.tsx
knowledge.module.css
contact.json

_21
import React from 'react';
_21
import styles from './knowledge.module.css';
_21
_21
type Props = {
_21
name?: string;
_21
};
_21
_21
const 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&apos;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
_21
export { App, App as default };