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

crowdsale, invest update #209

Merged
merged 2 commits into from
Oct 3, 2017
Merged
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
4 changes: 2 additions & 2 deletions public/crowdsale.html
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@
homescreen on Android. See https://developers.google.com/web/fundamentals/engage-and-retain/web-app-manifest/
-->

<link rel="manifest" href="%PUBLIC_URL%/manifest.json">
<link rel="shortcut icon" href="%PUBLIC_URL%/favicon.ico">
<link rel="manifest" href="./manifest.json">
<link rel="shortcut icon" href="./favicon.ico">
<!--
Notice the use of %PUBLIC_URL% in the tags above.
It will be replaced with the URL of the `public` folder during the build.
Expand Down
4 changes: 2 additions & 2 deletions public/invest.html
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@
homescreen on Android. See https://developers.google.com/web/fundamentals/engage-and-retain/web-app-manifest/
-->

<link rel="manifest" href="%PUBLIC_URL%/manifest.json">
<link rel="shortcut icon" href="%PUBLIC_URL%/favicon.ico">
<link rel="manifest" href="./manifest.json">
<link rel="shortcut icon" href="./favicon.ico">
<!--
Notice the use of %PUBLIC_URL% in the tags above.
It will be replaced with the URL of the `public` folder during the build.
Expand Down
4 changes: 2 additions & 2 deletions src/App.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,12 +15,12 @@ class App extends Component {
<div>
<Header/>
<Route exact path="/" component={crowdsaleAddr?Crowdsale:Home}/>
<Route exact path="/crowdsale" component={Crowdsale}/>
<Route exact path="/invest" component={Invest}/>
<Route path="/1" component={stepOne}/>
<Route path="/2" component={stepTwo}/>
<Route path="/3" component={stepThree}/>
<Route path="/4" component={stepFour}/>
<Route exact path="/crowdsale" component={Crowdsale}/>
<Route exact path="/invest" component={Invest}/>
<Footer/>
</div>
</Router>
Expand Down