Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Task ethereum #104

Open
wants to merge 3 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# frontend
# frontend realizado por jose alberto cortes ayala

## React Curriculum vitae

Expand Down
14,027 changes: 14,027 additions & 0 deletions package-lock.json

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions public/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
<html lang="es">
<head>
<meta charset="utf-8" />
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-GLhlTQ8iRABdZLl6O3oVMWSktQOp6b7In1Zl3/Jr59b6EGGoI1aFkw7cmDA6j6gD" crossorigin="anonymous">
<title>React Base</title>
</head>
<body>
Expand Down
27 changes: 27 additions & 0 deletions src/components/About.jsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
import React from 'react';

const About = () => {
return (
<>
<div className='col-3'>
<img className='img-profile ' src='https://media.licdn.com/dms/image/C4E03AQFkccad2NlFeA/profile-displayphoto-shrink_200_200/0/1630707728621?e=1683158400&v=beta&t=Fjsxcoqdn5INIVNUR6zLre2ErbEcpeHxF-USeLdnVso' alt='profile' />
</div>
<div className='col-9'>
<h2 className='Header-title About-title'>Jose Alberto Cortes Ayala </h2>
<p className='Header-job-title'>Desarrollador javascript/python</p>
<div>
<span className='Header-phone About-item'>55-41-17-38-26</span>
{' '}
<span className='Header-email About-item'>[email protected]</span>
{' '}
<span className='Header-website About-item'>N/A</span>
</div>
<div className='Header-adress'>
Ciudad de México
</div>
</div>
</>
);
};

export default About;
15 changes: 15 additions & 0 deletions src/components/Academic.jsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
import React from 'react';

const Academic = () => {
return (
<div className='col-6 '>
<h3 className='Academic-title'>Educación</h3>
<p className='Academic-item'>Bootcamp desarrollo web </p>
<p className='Academic-item'>Maestria en ingenieria de procesos</p>
<p className='Academic-item'>Licenciatura en ingenieria quimica </p>
</div>

);
};

export default Academic;
14 changes: 14 additions & 0 deletions src/components/Experience.jsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
import React from 'react';

const Experience = () => {
return (
<div className='col-6'>
<h3 className='Experience-title'>Experience</h3>
<p className='Experience-item col-6'>Desarrollador front-end react-litelement</p>
<p className='Experience-item col-6'>Desarrollador fullstack react/python</p>
<p className='Experience-item col-6'>Desarrollador fullstack python</p>
</div>
);
};

export default Experience;
11 changes: 11 additions & 0 deletions src/components/Header.jsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
import React from 'react';

const Header = ({ children }) => {
return (
<div className='row Header-title mt-2'>
{children}
</div>
);
};

export default Header;
15 changes: 15 additions & 0 deletions src/components/Interest.jsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
import React from 'react';

const Interest = () => {
return (
<div className='w-50'>
<h3 className='Interest-title'>Interest</h3>
<p className='Interest-item'>WEB3.0</p>
<p className='Interest-item'>Arquitectura de sowtware</p>
<p className='Interest-item'>Cloud</p>

</div>
);
};

export default Interest;
15 changes: 15 additions & 0 deletions src/components/Languages.jsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
import React from 'react';

const Languages = () => {
return (
<div className='col-6'>
<h3 className='Languages-title'>Languages</h3>
<p className='Languages-item'>Español</p>
<p className='Languages-item'>Ingles</p>
<p className='Languages-item'>Japones</p>

</div>
);
};

export default Languages;
12 changes: 12 additions & 0 deletions src/components/Profile.jsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
import React from 'react';

const Profile = () => {
return (
<div className=''>
<h3 className='Profile-title'>Profile</h3>
<p className='Profile-desc'>Desarrollador en busca de nuevos retos para crecer profesionalmente y personal </p>
</div>
);
};

export default Profile;
17 changes: 17 additions & 0 deletions src/components/Skills.jsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
import React from 'react';

const Skills = () => {
return (
<div className='col-6'>
<h3 className='Skills-title'>Skills</h3>
<p className='Skills-item'>javascript - React</p>
<p className='Skills-item'>python - django/fastApi</p>
<p className='Skills-item'>java</p>
<p className='Skills-item'>Docker</p>
<p className='Skills-item'>SQL/NOSQL</p>
<p className='Skills-item'>AWS</p>
</div>
);
};

export default Skills;
21 changes: 14 additions & 7 deletions src/containers/App.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -11,18 +11,25 @@ import Languages from '../components/Languages';

const App = () => {
return (
<>
<div className='container mt-4'>
<Header>
<About />
</Header>
<Profile />
<Experience />
<Academic />
<Skills />
<Interest />
<Languages />
</>
)
<div className='row'>
<Academic />
<Skills />

</div>
<div className='row'>
<Interest />
<Languages />

</div>

</div>
);
};

export default App;
6 changes: 5 additions & 1 deletion src/styles/components/App.styl
Original file line number Diff line number Diff line change
@@ -1,2 +1,6 @@
body
background-color blue
background-color #e2e2e2

.img-profile
heigth 100px
border-radius 50%
7 changes: 7 additions & 0 deletions src/utils/getData.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
const getData = async (url) => {
const res = await fetch(url);
const data = await res.json();
return data;
};

export default getData;