parent
85a31d9379
commit
4bfcbb3a53
After Width: | Height: | Size: 159 KiB |
@ -0,0 +1,9 @@
|
|||||||
|
import React from 'react'
|
||||||
|
import styles from './Footer.module.css'
|
||||||
|
const Footer = () => {
|
||||||
|
return (
|
||||||
|
<div>Footer</div>
|
||||||
|
)
|
||||||
|
}
|
||||||
|
|
||||||
|
export default Footer
|
@ -0,0 +1,15 @@
|
|||||||
|
import React from "react";
|
||||||
|
import styles from "./ProfileCard.module.css";
|
||||||
|
var ProfilePhoto = require('../assets/img/photo.jpg')
|
||||||
|
|
||||||
|
const ProfileCard = () => {
|
||||||
|
return (
|
||||||
|
<div className={styles.container}>
|
||||||
|
<img src={ProfilePhoto} alt="Profile Photo" />
|
||||||
|
<h1>Diego Baena</h1>
|
||||||
|
<p>Frontend Developer</p>
|
||||||
|
</div>
|
||||||
|
);
|
||||||
|
};
|
||||||
|
|
||||||
|
export default ProfileCard;
|
@ -0,0 +1,12 @@
|
|||||||
|
.container img {
|
||||||
|
width: 250px;
|
||||||
|
border-radius: 50%;
|
||||||
|
margin-bottom: 20px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.container h1,
|
||||||
|
.container p {
|
||||||
|
text-align: center;
|
||||||
|
margin-bottom: 10px;
|
||||||
|
color: rgb(36, 35, 35);
|
||||||
|
}
|
@ -0,0 +1,33 @@
|
|||||||
|
import React from "react";
|
||||||
|
import styles from "./Skills.module.css";
|
||||||
|
import Tags from "./Tags";
|
||||||
|
|
||||||
|
const Skills = (props) => {
|
||||||
|
return (
|
||||||
|
<div className={styles.container}>
|
||||||
|
<h1>Skills</h1>
|
||||||
|
<div>
|
||||||
|
<Tags skill="HTML" />
|
||||||
|
<Tags skill="CSS" />
|
||||||
|
<Tags skill="Sass" />
|
||||||
|
<Tags skill="JS" />
|
||||||
|
<Tags skill="React" />
|
||||||
|
<Tags skill="Redux" />
|
||||||
|
<Tags skill="Node" />
|
||||||
|
<Tags skill="MongoDB" />
|
||||||
|
<Tags skill="Python" />
|
||||||
|
<Tags skill="Flask" />
|
||||||
|
<Tags skill="Django" />
|
||||||
|
<Tags skill="Data Analisys" />
|
||||||
|
<Tags skill="MySQL" />
|
||||||
|
<Tags skill="GraphQL" />
|
||||||
|
<Tags skill="Gatsby" />
|
||||||
|
<Tags skill="Docker" />
|
||||||
|
<Tags skill="Heroku" />
|
||||||
|
<Tags skill="Git" />
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
);
|
||||||
|
};
|
||||||
|
|
||||||
|
export default Skills;
|
@ -0,0 +1,15 @@
|
|||||||
|
.container {
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
}
|
||||||
|
|
||||||
|
.container div {
|
||||||
|
display: flex;
|
||||||
|
justify-content: space-between;
|
||||||
|
}
|
||||||
|
|
||||||
|
.container h1 {
|
||||||
|
color: rgb(55, 53, 53);
|
||||||
|
text-align: left;
|
||||||
|
margin-bottom: 15px;
|
||||||
|
}
|
@ -0,0 +1,10 @@
|
|||||||
|
import React from 'react'
|
||||||
|
import styles from './Tags.module.css'
|
||||||
|
|
||||||
|
const Tags = (props) => {
|
||||||
|
return (
|
||||||
|
<p className={styles.container}>{props.skill}</p>
|
||||||
|
)
|
||||||
|
}
|
||||||
|
|
||||||
|
export default Tags
|
@ -0,0 +1,12 @@
|
|||||||
|
.container {
|
||||||
|
display: flex;
|
||||||
|
justify-content: center;
|
||||||
|
align-items: center;
|
||||||
|
min-width: 50px;
|
||||||
|
max-width: 80px;
|
||||||
|
padding: 2px;
|
||||||
|
border-radius: 5px;
|
||||||
|
color: white;
|
||||||
|
font-weight: bold;
|
||||||
|
background-color: aqua;
|
||||||
|
}
|
Loading…
Reference in new issue