-
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
10 changed files
with
46 additions
and
178 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 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,8 @@ | ||
import { ReactElement, useEffect, useState } from 'react'; | ||
import { Link } from 'react-router-dom'; | ||
import EmailSVG from './contact_images/email.svg'; | ||
import LinkedInSVG from './contact_images/linkedin.svg'; | ||
import GitHubSVG from './contact_images/github.svg'; | ||
import { HamburgerMenu } from '../Hamburger/Hamburger'; | ||
import './navbar.scss'; | ||
|
||
|
@@ -78,6 +81,17 @@ export const NavBarLinks = ({ onClick }: NavBarLinksProps): ReactElement => | |
<span className={'nav-text'}>CV</span> | ||
</li> | ||
</Link> | ||
<div style={{ marginLeft: '16px' }}> | ||
<a style={{ marginRight: '24px' }} href="mailto:[email protected]"> | ||
<img className="contact-icon" src={EmailSVG} alt="email" /> | ||
</a> | ||
<a style={{ marginRight: '24px' }} href="/linkedin"> | ||
<img className="contact-icon" src={LinkedInSVG} alt="linkedin" /> | ||
</a> | ||
<a href="/github"> | ||
<img className="contact-icon" src={GitHubSVG} alt="github" /> | ||
</a> | ||
</div> | ||
</ul> | ||
</nav>; | ||
|
||
|
File renamed without changes
File renamed without changes
File renamed without changes
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