-
Notifications
You must be signed in to change notification settings - Fork 2
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
d46b10e
commit 411461f
Showing
18 changed files
with
1,039 additions
and
2,233 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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
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
Binary file not shown.
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,18 @@ | ||
import React from 'react'; | ||
import PropTypes from 'prop-types'; | ||
|
||
import classes from './Button.scss'; | ||
|
||
function Button({ children, ...props }) { | ||
return ( | ||
<a className={classes.button} {...props}> | ||
{children} | ||
</a> | ||
); | ||
} | ||
|
||
Button.propTypes = { | ||
children: PropTypes.oneOfType([PropTypes.arrayOf(PropTypes.node), PropTypes.node]).isRequired, | ||
}; | ||
|
||
export default Button; |
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,23 @@ | ||
@import '../../../assets/styles/common'; | ||
|
||
.button { | ||
-webkit-appearance: none; | ||
background: none; | ||
border: solid 1px #00c4ff; | ||
padding: 10px 15px; | ||
color: #00c4ff; | ||
font-size: 14px; | ||
font-family: 'Fira Mono', monospace; | ||
cursor: pointer; | ||
margin: 0; | ||
|
||
&:hover { | ||
background: #00c4ff; | ||
color: $background_color; | ||
} | ||
|
||
&:active { | ||
margin-top: 1px; | ||
margin-bottom: -1px; | ||
} | ||
} |
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 |
---|---|---|
|
@@ -5,7 +5,7 @@ import Title from '../../../../components/Title/Title'; | |
|
||
export default function Contact() { | ||
return ( | ||
<section className={classes.contact}> | ||
<section className={classes.contact} id={'contact'}> | ||
<Title title={'📨 Get in touch with me.'} alignRight /> | ||
|
||
<div className={classes.contactDetails}> | ||
|
@@ -18,7 +18,7 @@ export default function Contact() { | |
I will soon be seeking employment opportunities for when I graduate in June 2020. | ||
</p> | ||
|
||
<a href={'mailto:[email protected]'} target={'_blank'}> | ||
<a href={'mailto:[email protected]'}> | ||
<button>Say hello!</button> | ||
</a> | ||
</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
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,6 +2,9 @@ import React, { Component } from 'react'; | |
|
||
import classes from './Splash.scss'; | ||
import Settings from '../../../../../settings'; | ||
import Button from '../../../../components/Button/Button'; | ||
|
||
import Resume from '../../../../../assets/files/resume.pdf'; | ||
|
||
export default class Splash extends Component { | ||
constructor(props) { | ||
|
@@ -52,12 +55,14 @@ export default class Splash extends Component { | |
|
||
<p dangerouslySetInnerHTML={{ __html: Settings.biography }} /> | ||
|
||
<br/> | ||
<br/> | ||
<br /> | ||
<br /> | ||
|
||
<div className={classes.actionButtons}> | ||
<button onClick="">Get in touch</button> | ||
<button onClick="">Grab my résumé</button> | ||
<Button href={'mailto:[email protected]'}>Get in touch</Button> | ||
<Button href={Resume} target={'_blank'}> | ||
Grab my résumé | ||
</Button> | ||
</div> | ||
</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
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 |
---|---|---|
|
@@ -19,7 +19,7 @@ export default function SocialBars() { | |
</div> | ||
<div className={cx(classes.bottomSocial, classes.right, classes.text)}> | ||
<p> | ||
<a href={'mailto:[email protected]'} target={'_blank'}>[email protected]</a> | ||
<a href={'mailto:[email protected]'}>[email protected]</a> | ||
</p> | ||
</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
Oops, something went wrong.