-
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
Showing
29 changed files
with
331 additions
and
403 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
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 |
---|---|---|
|
@@ -2,51 +2,41 @@ import { ContactButton } from '../Button/Button'; | |
import EmailSVG from './contact_images/email.svg'; | ||
import LinkedInSVG from './contact_images/linkedin.svg'; | ||
import GitHubSVG from './contact_images/github.svg'; | ||
import TwitterSVG from './contact_images/twitter.svg'; | ||
import React from 'react'; | ||
import './contact.scss'; | ||
|
||
export const Contact = (): React.ReactElement => | ||
<section className={'contact-container'}> | ||
<div className={'contact-header-text'}> | ||
<section className={'contact-container'}> | ||
<div className={'contact-header-text'}> | ||
Contact me: | ||
</div> | ||
<div className={'current-status'} /> | ||
<div className={'contact-links'}> | ||
<ul> | ||
<li> | ||
<ContactButton | ||
icon={EmailSVG} | ||
href={'mailto:[email protected]'} | ||
alt={'email contact icon'} | ||
text={'Email'} | ||
/> | ||
</li> | ||
<li> | ||
<ContactButton | ||
icon={LinkedInSVG} | ||
href={'https://www.linkedin.com/in/mitchlui/'} | ||
alt={'linkedin contact icon'} | ||
text={'Linkedin'} | ||
/> | ||
</li> | ||
<li> | ||
<ContactButton | ||
icon={GitHubSVG} | ||
href={'https://www.github.com/mitchlui'} | ||
alt={'github contact icon'} | ||
text={'GitHub'} | ||
/> | ||
</li> | ||
<li> | ||
<ContactButton | ||
icon={TwitterSVG} | ||
href={'https://www.twitter.com/mitchluidev'} | ||
alt={'twitter contact icon'} | ||
text={'Twitter'} | ||
/> | ||
</li> | ||
</ul> | ||
|
||
</div> | ||
</section>; | ||
</div> | ||
<div className={'current-status'} /> | ||
<div className={'contact-links'}> | ||
<ul> | ||
<li> | ||
<ContactButton | ||
icon={EmailSVG} | ||
href={'mailto:[email protected]'} | ||
alt={'email contact icon'} | ||
text={'Email'} | ||
/> | ||
</li> | ||
<li> | ||
<ContactButton | ||
icon={LinkedInSVG} | ||
href={'https://www.linkedin.com/in/mitchlui/'} | ||
alt={'linkedin contact icon'} | ||
text={'Linkedin'} | ||
/> | ||
</li> | ||
<li> | ||
<ContactButton | ||
icon={GitHubSVG} | ||
href={'https://www.github.com/mitchlui'} | ||
alt={'github contact icon'} | ||
text={'GitHub'} | ||
/> | ||
</li> | ||
</ul> | ||
</div> | ||
</section>; |
This file was deleted.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,10 @@ | ||
import React from 'react'; | ||
import './container.scss'; | ||
import { Copyright } from '../Copyright/Copyright'; | ||
|
||
type ContainerProps = { | ||
children: React.ReactNode; | ||
} | ||
|
||
export const Container = ({ children }: ContainerProps): React.ReactElement => | ||
<div><div className="container">{children}</div></div>; | ||
<div className="container">{children}<Copyright/></div>; |
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,5 @@ | ||
.container { | ||
display: block; | ||
padding-left: 10%; | ||
padding-right: 10%; | ||
padding-bottom: 2.5%; | ||
|
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,11 +1,7 @@ | ||
.copyright{ | ||
padding: 2rem 0.5rem; | ||
position: relative; | ||
left: 0px; | ||
right: 0px; | ||
bottom: 2rem; | ||
text-align: center; | ||
font-size: 0.75rem; | ||
opacity: 75%; | ||
text-align: center; | ||
} | ||
|
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 was deleted.
Oops, something went wrong.
This file was deleted.
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
Oops, something went wrong.