-
Notifications
You must be signed in to change notification settings - Fork 19
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
bfe1545
commit 8216e95
Showing
4 changed files
with
19 additions
and
18 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,13 +1,17 @@ | ||
import React from 'react' | ||
import { Button, Nav } from 'react-bootstrap' | ||
import { Link } from 'react-router-dom' | ||
import { FaDiscord, FaGithub, FaTwitter } from 'react-icons/fa' | ||
import MainSearchBar from './MainSearchBar' | ||
|
||
const AnonNavRight = () => | ||
<Nav className='ml-auto metriq-navbar metriq-navbar-right'> | ||
<Nav.Link href='https://twitter.com/MetriqInfo' eventKey='8'> <FaTwitter color={`${'white'}`} size={25} className='metriq-navbar-social-icon' /> </Nav.Link> | ||
<Nav.Link href='http://discord.unitary.fund' eventKey='9'> <FaDiscord color={`${'white'}`} size={25} className='metriq-navbar-social-icon' /> </Nav.Link> | ||
<Nav.Link href='https://github.com/unitaryfund/metriq-app' eventKey='10'> <FaGithub color={`${'white'}`} size={25} className='metriq-navbar-social-icon' /> </Nav.Link> | ||
<MainSearchBar /> | ||
<Nav.Link as={Link} to='/Login' eventKey='13'><Button variant='outline-light' className='metriq-navbar-button'>Log In</Button></Nav.Link> | ||
<Nav.Link as={Link} to='/Login/AddSubmission' eventKey='14'><Button variant='primary' className='metriq-navbar-button submit-button'>Submit</Button></Nav.Link> | ||
<Nav.Link as={Link} to='/Login' eventKey='11'><Button variant='outline-light' className='metriq-navbar-button'>Log In</Button></Nav.Link> | ||
<Nav.Link as={Link} to='/Login/AddSubmission' eventKey='12'><Button variant='primary' className='metriq-navbar-button submit-button'>Submit</Button></Nav.Link> | ||
</Nav> | ||
|
||
export default AnonNavRight |
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