forked from gndx/react-eth-challenge
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
🚧 [gndx#1] Add: Create the project components
- Loading branch information
Showing
19 changed files
with
1,057 additions
and
117 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
import React from 'react'; | ||
|
||
export default function index() { | ||
return ( | ||
<section> | ||
<p className="About-title"></p> | ||
<div> | ||
<ol> | ||
<li className="About-item">phone</li> | ||
<li className="About-item">phone</li> | ||
<li className="About-item">phone</li> | ||
</ol> | ||
</div> | ||
</section> | ||
); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
import React from 'react'; | ||
|
||
export default function index() { | ||
return ( | ||
<section> | ||
<h2 className="Academic-title">Academic</h2> | ||
<div> | ||
<ol> | ||
<ul className="Academic-item">escuela 1 </ul> | ||
<ul className="Academic-item">escuela 1 </ul> | ||
<ul className="Academic-item">escuela 1 </ul> | ||
</ol> | ||
</div> | ||
</section> | ||
); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
import React from 'react'; | ||
|
||
export default function index() { | ||
return ( | ||
<section> | ||
<h2 className="Experience-title">Experience</h2> | ||
<div> | ||
<ol> | ||
<li className="Experience-item">experience 1</li> | ||
<li className="Experience-item">experience 2</li> | ||
<li className="Experience-item">experience 3w</li> | ||
</ol> | ||
</div> | ||
</section> | ||
); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
import React from 'react'; | ||
|
||
export default function Header({ children }) { | ||
return ( | ||
<header className="Header"> | ||
<h1 className="Header-title">title</h1> | ||
<h2 className="Header-job-title">job</h2> | ||
{children} | ||
<address></address> | ||
</header> | ||
); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
import React from 'react'; | ||
|
||
export default function index() { | ||
return ( | ||
<section> | ||
<h2 className="Interest-title">Interest</h2> | ||
<div> | ||
<ol> | ||
<li className="Interest-item">interest 1</li> | ||
<li className="Interest-item">interest 2</li> | ||
<li className="Interest-item">interest 1</li> | ||
</ol> | ||
</div> | ||
</section> | ||
); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
import React from 'react'; | ||
|
||
export default function index() { | ||
return ( | ||
<section> | ||
<h2 className="Languages-title">titulo lenguaje</h2> | ||
<div> | ||
<ol> | ||
<ul className="Languages-item">lenguaje 1</ul> | ||
<ul className="Languages-item">lenguaje 2</ul> | ||
<ul className="Languages-item">lenguaje 3</ul> | ||
</ol> | ||
</div> | ||
</section> | ||
); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
import React from 'react'; | ||
|
||
export default function index() { | ||
return ( | ||
<section className="Profile"> | ||
<h2 className="Profile-title">Profile</h2> | ||
<p className="Profile-desc"> descripcion</p> | ||
</section> | ||
); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
import React from 'react'; | ||
|
||
export default function index() { | ||
return ( | ||
<section className="Skills"> | ||
<h2 className="Skills-title">Skills</h2> | ||
<div> | ||
<ol> | ||
<ul className="Skills-item">Skills</ul> | ||
<ul className="Skills-item">Skills</ul> | ||
<ul className="Skills-item">Skills</ul> | ||
</ol> | ||
</div> | ||
</section> | ||
); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
export default getData = (url) => { | ||
return fetch(url).then((res) => res.json()); | ||
}; |
728adf8
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Successfully deployed to the following URLs:
react-eth-challenge – ./
react-eth-challenge-theta.vercel.app
react-eth-challenge-git-main-alvarocastilloweb.vercel.app
react-eth-challenge-alvarocastilloweb.vercel.app