-
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.
- Loading branch information
1 parent
187fe6f
commit ea02411
Showing
4 changed files
with
210 additions
and
3 deletions.
There are no files selected for viewing
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 |
---|---|---|
@@ -1 +1,22 @@ | ||
// Create your Footer component here | ||
import { FaMedium } from 'react-icons/fa'; | ||
|
||
const Footer = () => { | ||
return ( | ||
<footer id="footer" className="footer"> | ||
<div className="footer-contact-info"> | ||
<h1 className="footer-heading">Connect With Me</h1> | ||
<p className="footer-contact-access"> | ||
<a href="mailto:ataturhan21@gmail.com">Email: ataturhan21@gmail.com</a> | ||
</p> | ||
</div> | ||
<div> | ||
<h1>Social Links</h1> | ||
<div className="social-icons"> | ||
<a href="https://medium.com/@ataturhan"><i><FaMedium /></i></a> | ||
</div> | ||
</div> | ||
</footer> | ||
) | ||
} | ||
|
||
export default Footer; |
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 |
---|---|---|
@@ -1 +1,55 @@ | ||
// Create your Skills component here | ||
import { FaJs, FaReact, FaHtml5, FaCss3, FaGithub, FaDocker } from "react-icons/fa"; | ||
|
||
const Skills = () => { | ||
const skillsArr = [ | ||
{ | ||
"name" : 'JavaScript', | ||
"icon" : FaJs | ||
}, | ||
{ | ||
"name" : "HTML", | ||
"icon" : FaHtml5 | ||
}, | ||
{ | ||
"name" : "CSS", | ||
"icon" : FaCss3 | ||
}, | ||
{ | ||
"name" : "Git", | ||
"icon" : FaGithub | ||
}, | ||
{ | ||
"name" : "Reactjs", | ||
"icon" : FaReact | ||
}, | ||
{ | ||
"name" : "Docker", | ||
"icon" : FaDocker | ||
} | ||
]; | ||
|
||
return ( | ||
<div id='skills' className='skills'> | ||
<h2 className='title'>Skills</h2> | ||
<div className='skill-holder'> | ||
{ | ||
skillsArr.map((skill, index) => { | ||
const Icon = skill.icon; | ||
return ( | ||
<i key={index} className='skill-cards'> | ||
<Icon className='skill-icon'/> | ||
<p | ||
className="skill" | ||
> | ||
{skill.name} | ||
</p> | ||
</i> | ||
) | ||
}) | ||
} | ||
</div> | ||
</div> | ||
) | ||
} | ||
|
||
export default Skills; |