-
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.
refactor: improve typescript code quality (#1)
- Loading branch information
Showing
23 changed files
with
7,247 additions
and
5,872 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,2 @@ | ||
/node_modules | ||
.next | ||
*.jsx | ||
*.tsx | ||
.next |
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,60 +1,51 @@ | ||
import React from 'react'; | ||
import styled from 'styled-components'; | ||
import { motion } from 'framer-motion'; | ||
import { | ||
FaGithub, | ||
FaLinkedin, | ||
FaInstagram, | ||
FaFacebookSquare, | ||
} from 'react-icons/fa'; | ||
import { FaGithub, FaLinkedin, FaInstagram, FaFacebookSquare } from 'react-icons/fa'; | ||
import { fadeInUp, stagger } from '../utils/animate'; | ||
|
||
const Contact: React.FC = () => { | ||
return ( | ||
<motion.div | ||
exit={{ opacity: 0 }} | ||
variants={stagger} | ||
initial="initial" | ||
animate="animate" | ||
> | ||
<motion.div exit={{ opacity: 0 }} variants={stagger} initial="initial" animate="animate"> | ||
<ContactWrapper> | ||
<div className="header"> | ||
<motion.h1 variants={fadeInUp}>Contact Me</motion.h1> | ||
<motion.p variants={fadeInUp}> | ||
Hi there, you can reach me by follow my social media or email me at | ||
[email protected]. I am quite active at Facebook and Instagram, | ||
feel free to leave me a message :) | ||
[email protected]. I am quite active at Facebook and Instagram, feel free to leave me | ||
a message :) | ||
</motion.p> | ||
</div> | ||
<motion.div variants={fadeInUp} className="icons"> | ||
<a | ||
href="https://github.com/retr00exe" | ||
aria-label="Github" | ||
target="_blank" | ||
rel="noopener" | ||
rel="noopener noreferrer" | ||
> | ||
<FaGithub className="icon github" /> | ||
</a> | ||
<a | ||
href="https://www.linkedin.com/in/mekelilyasa/" | ||
aria-label="Linkedin" | ||
target="_blank" | ||
rel="noopener" | ||
rel="noopener noreferrer" | ||
> | ||
<FaLinkedin className="icon linkedin" /> | ||
</a> | ||
<a | ||
href="https://www.instagram.com/mekelilyasa/" | ||
aria-label="Instagram" | ||
target="_blank" | ||
rel="noopener" | ||
rel="noopener noreferrer" | ||
> | ||
<FaInstagram className="icon instagram" /> | ||
</a> | ||
<a | ||
href="https://www.facebook.com/mekel.ilyasa/" | ||
aria-label="Facebook" | ||
target="_blank" | ||
rel="noopener" | ||
rel="noopener noreferrer" | ||
> | ||
<FaFacebookSquare className="icon facebook" /> | ||
</a> | ||
|
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 |
---|---|---|
@@ -1,3 +1,4 @@ | ||
import React from 'react'; | ||
import styled from 'styled-components'; | ||
|
||
const Image: React.FC = (props) => { | ||
|
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
Oops, something went wrong.