Skip to content

Commit e991eab

Browse files
author
Augusto Lemble
authored
Merge pull request #339 from levelkdev/develop
openraise-dapp v0.2.3
2 parents 5815601 + 942f56c commit e991eab

16 files changed

+53
-856
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "openraise-dapp",
3-
"version": "0.2.2",
3+
"version": "0.2.3",
44
"description": "Decentralized app for fundraising in DXdao.",
55
"scripts": {
66
"start": "./scripts/start.sh",

src/App.css

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@
4949
/*white from above is also used in landing page*/
5050
}
5151

52-
.exchange-body-container {
52+
.invest-body-container {
5353
display: flex;
5454
flex-direction: row;
5555
justify-content: center;
@@ -329,4 +329,4 @@ pre {
329329
letter-spacing: 0.88px;
330330
padding-left: 16px;
331331
margin-bottom: 42px;
332-
}
332+
}

src/App.js

Lines changed: 15 additions & 45 deletions
Original file line numberDiff line numberDiff line change
@@ -2,54 +2,24 @@ import React from 'react';
22
import { HashRouter, Route, Switch } from 'react-router-dom';
33
import './App.css';
44
import Web3ReactManager from 'components/Web3ReactManager';
5-
import NavBarContainer from './containers/NavBarContainer';
6-
import FooterContainer from './containers/FooterContainer';
7-
import ExchangeContainer from './containers/ExchangeContainer';
8-
import LandingPage from './components/LandingPage/LandingPage';
9-
import LandingPageFooter from './components/LandingPage/Footer';
10-
import LandingPageHeader from './components/LandingPage/Header';
11-
12-
13-
14-
import FAQPage from 'components/FAQPage';
15-
5+
import BondingCurveContainer from './containers/BondingCurveContainer';
166

177
const App = () => {
18-
return (
19-
<HashRouter>
20-
<Switch>
21-
<Route exact path="/">
22-
<div className="landing-body-container">
23-
<div className="app-shell">
24-
<LandingPageHeader />
25-
<LandingPage />
26-
<LandingPageFooter />
27-
</div>
8+
return (
9+
<HashRouter>
10+
<Switch>
11+
<Route exact path="/">
12+
<div className="invest-body-container">
13+
<div className="app-shell">
14+
<Web3ReactManager>
15+
<BondingCurveContainer />
16+
</Web3ReactManager>
2817
</div>
29-
</Route>
30-
<Route exact path="/exchange">
31-
<div className="exchange-body-container">
32-
<div className="app-shell">
33-
<Web3ReactManager>
34-
<NavBarContainer />
35-
<ExchangeContainer />
36-
<FooterContainer />
37-
</Web3ReactManager>
38-
</div>
39-
</div>
40-
</Route>
41-
<Route exact path="/faq">
42-
<div className="landing-body-container">
43-
<div className="app-shell">
44-
<LandingPageHeader />
45-
<FAQPage/>
46-
<LandingPageFooter />
47-
</div>
48-
</div>
49-
</Route>
50-
</Switch>
51-
</HashRouter>
52-
);
18+
</div>
19+
</Route>
20+
</Switch>
21+
</HashRouter>
22+
);
5323
};
5424

5525
export default App;

src/components/Footer.js

Lines changed: 11 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -70,11 +70,11 @@ const Footer = () => {
7070
<FooterItem>
7171
<a
7272
href={
73-
'https://github.com/levelkdev/openraise-dapp/tree/v0.2.2'
73+
'https://github.com/levelkdev/openraise-dapp/tree/v0.2.3'
7474
}
7575
target="#"
7676
>
77-
Version 0.2.2
77+
Version 0.2.3
7878
</a>
7979
</FooterItem>
8080
<FooterDivider></FooterDivider>
@@ -100,6 +100,15 @@ const Footer = () => {
100100
Alchemy
101101
</a>
102102
</FooterItem>
103+
<FooterDivider></FooterDivider>
104+
<FooterItem>
105+
<a
106+
href="https://dxdao.eth.link/#/faq"
107+
target="#"
108+
>
109+
FAQ
110+
</a>
111+
</FooterItem>
103112
</LeftFooter>
104113
<RighFooter>
105114
<LogoWrapper>

src/components/LandingPage/Header.tsx

Lines changed: 0 additions & 85 deletions
This file was deleted.

0 commit comments

Comments
 (0)