Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Moved static page contents to Wiki #495

Open
wants to merge 1 commit into
base: Development
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file added client/src/images/velsera.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
6 changes: 3 additions & 3 deletions client/src/layouts/MainNavBar.js
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ const NavBar = () => {
</IconButton>
<p>BCO DB</p>
</MenuItem>
<MenuItem component={Link} to='/about'>
<MenuItem a href='https://wiki.biocomputeobject.org/About' target="_blank">
<IconButton aria-label='About Us' className="white-icon">
<Badge overlap="rectangular" badgeContent={0} color='secondary'>
<InfoOutlinedIcon />
Expand Down Expand Up @@ -182,8 +182,8 @@ const NavBar = () => {
<Tooltip title="Help">
<><HelpDropDown /></>
</Tooltip>
<Tooltip title="About Us">
<IconButton component={Link} to='/about' className="nav-link">
<Tooltip title="About Us" target="_blank">
<IconButton a href="https://wiki.biocomputeobject.org/About" className="nav-link">
<Badge overlap="rectangular" badgeContent={0} >
<InfoOutlinedIcon className="white-icon"/>
</Badge>
Expand Down
4 changes: 3 additions & 1 deletion client/src/layouts/shared/DocDropDown.js
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,9 @@ export default function DocDropDown() {
</MenuItem>
<MenuItem
component="a"
href="/resources"
href="https://wiki.biocomputeobject.org/BCO_Resources"
target="_blank"
rel="noopener noreferrer"
>
<ListItemDecorator>
<SettingsInputAntennaIcon />
Expand Down
2 changes: 1 addition & 1 deletion client/src/pages/Home.js
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ const HomePage = () => {
</Grid>
<Grid item xs={12} sm={6} lg={4} xl={4}>
<ThirdBox
link="/resources"
link="https://wiki.biocomputeobject.org/BCO_Resources"
title="Cloud-based tools for BioCompute"
content="See our resources page for additional tools and services."
cssClass=""
Expand Down
Loading