Skip to content
This repository has been archived by the owner on Jan 25, 2020. It is now read-only.

Commit

Permalink
Revert "redirect home to live"
Browse files Browse the repository at this point in the history
This reverts commit fddbcb9.
  • Loading branch information
nickysemenza committed Oct 2, 2017
1 parent bacaaf2 commit d63e5e8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
3 changes: 1 addition & 2 deletions src/Routes.js
Original file line number Diff line number Diff line change
Expand Up @@ -75,8 +75,7 @@ const ContainerSwitcher = withRouter(ContainerSwitcherRoute);
const Routes = () => (
<ContainerSwitcher>
{/*Public Routes*/}
<Route exact path="/" component={RedirectToLive}/>
<Route path="/home" component={Home}/>
<Route exact path="/" component={Home}/>
<Route path="/dayof" component={RedirectToLive}/>
<Route path="/live" component={DayOf}/>
<Route path="/about" component={About}/>
Expand Down
2 changes: 1 addition & 1 deletion src/components/Nav.js
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ class Nav extends Component {
<div className="bgwhite navContainer">
<div className="navLogo">
<img src={logo} alt='boilermake' className='hammers'/>
<NavLink exact to='/home' className='pink logo'>BoilerMake</NavLink>
<NavLink exact to='/' className='pink logo'>BoilerMake</NavLink>
</div>
<nav className="navBar desktop">
<NavLink exact to='/about' className='navLink hover'>About</NavLink>
Expand Down

0 comments on commit d63e5e8

Please sign in to comment.