Skip to content

Commit

Permalink
Add Projects section
Browse files Browse the repository at this point in the history
  • Loading branch information
Victor Faramond committed Oct 16, 2018
1 parent 3406eec commit 17bcf6f
Show file tree
Hide file tree
Showing 29 changed files with 124 additions and 525 deletions.
5 changes: 5 additions & 0 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,8 @@
"react-dom": "16.4.2",
"react-helmet": "5.2.0",
"smooth-scroll": "14.2.1",
"tachyons": "4.11.1"
"tachyons": "4.11.1",
"typeface-varela-round": "0.0.54"
},
"devDependencies": {
"babel-eslint": "8.2.6",
Expand Down
Binary file removed src/components/Eltcard/images/card0.png
Binary file not shown.
Binary file removed src/components/Eltcard/images/card1.png
Binary file not shown.
Binary file removed src/components/Eltcard/images/card2.png
Binary file not shown.
22 changes: 0 additions & 22 deletions src/components/Eltcard/index.js

This file was deleted.

22 changes: 7 additions & 15 deletions src/components/Exchanges/index.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
import React, { Component } from 'react';
import apolloLogo from './images/apollo.png';
import coinexchangeLogo from './images/coinexchange.png';
import forkDeltaLogo from './images/forkdelta.png';
import idexLogo from './images/idex.png';
import mercatoxLogo from './images/mercatox.png';
import simpleswapLogo from './images/simpleswap.png';
Expand All @@ -27,21 +25,11 @@ function nFormatter(num, digits) {
}

const exchanges = [
{
link: 'https://www.apollomission.io',
logo: apolloLogo,
name: 'Apollo',
},
{
link: 'https://www.coinexchange.io/market/ELT/ETH',
logo: coinexchangeLogo,
name: 'CoinExchange',
},
{
link: 'https://forkdelta.github.io/#!/trade/ELTCOIN-ETH',
logo: forkDeltaLogo,
name: 'ForkDelta',
},
{
link: 'https://idex.market/eth/eltcoin',
logo: idexLogo,
Expand Down Expand Up @@ -86,12 +74,12 @@ export default class Exchanges extends Component {
const { marketCap, rank, volume } = this.state;

return (
<section className="cf tc mw9 center pt5">
<section className="cf tc mw9 center mb5" id="exchanges">
<h2 className="f2 normal tracked-mega">EXCHANGES</h2>
<div className="cf ph3 center">
{exchanges.map((exchange, index) => (
<div
className="cf fl w-50 w-third-ns ph2"
className="cf fl-ns w-full w-50-ns ph2"
// eslint-disable-next-line react/no-array-index-key
key={index}
>
Expand All @@ -101,7 +89,11 @@ export default class Exchanges extends Component {
target="_blank"
rel="noopener noreferrer"
>
<img className="w5" src={exchange.logo} alt={exchange.name} />
<img
className="w6 tc"
src={exchange.logo}
alt={exchange.name}
/>
</a>
</div>
))}
Expand Down
24 changes: 24 additions & 0 deletions src/components/Footer/index.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

16 changes: 4 additions & 12 deletions src/components/Header/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,25 +7,17 @@ export default () => (
<img src={logo} className="h2 w2" alt="" />
</a>
<div className="dtc v-mid w-85 tr">
<a
className="link dim white f7 f5-ns mr3 mr4-ns tracked tracked-mega-ns pointer"
href="https://s3.eu-west-1.amazonaws.com/eltcoin/ELTCOIN%20WHITEPAPER.pdf"
rel="noopener noreferrer"
target="_blank"
>
WHITE PAPER
</a>
<a
className="link dim white f7 f5-ns mr3 mr4-ns tracked tracked-mega-ns"
href="#roadmap"
href="#projects"
>
ROADMAP
PROJECTS
</a>
<a
className="link dim white f7 f5-ns tracked tracked-mega-ns"
href="#team"
href="#exchanges"
>
TEAM
EXCHANGES
</a>
</div>
</nav>
Expand Down

0 comments on commit 17bcf6f

Please sign in to comment.