0
0
mirror of https://github.com/naturalcrit/homebrewery.git synced 2026-01-01 08:42:45 +00:00

Revert "Initial pass at redirecting / to a landing page"

This reverts commit 468ccd748d.
This commit is contained in:
G.Ambatte
2022-04-02 10:11:59 +13:00
parent 468ccd748d
commit 6c7eb339f4
2 changed files with 0 additions and 20 deletions

View File

@@ -52,7 +52,6 @@ const Homebrew = createClass({
<Route path='/user/:username' component={(routeProps)=><UserPage username={routeProps.match.params.username} brews={this.props.brews} query={queryString.parse(routeProps.location.search)}/>}/>
<Route path='/print/:id' component={(routeProps)=><PrintPage brew={this.props.brew} query={queryString.parse(routeProps.location.search)} />}/>
<Route path='/print' exact component={(routeProps)=><PrintPage query={queryString.parse(routeProps.location.search)} />}/>
<Route path='/home' component={()=><SharePage brew={this.props.brew} />}/>
<Route path='/changelog' exact component={()=><SharePage brew={this.props.brew} />}/>
<Route path='/faq' exact component={()=><SharePage brew={this.props.brew} />}/>
<Route path='/v3_preview' exact component={()=><HomePage brew={this.props.brew} />}/>