Skip to content

Commit f14e475

Browse files
committed
v1.0
1 parent b89805a commit f14e475

File tree

17 files changed

+20
-52
lines changed

17 files changed

+20
-52
lines changed

src/components/Background.js

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,5 @@
11
import React from 'react';
22

3-
// redux
4-
import { useSelector } from 'react-redux';
5-
63
export default function Background() {
74
return (
85
<div className="background">

src/components/Card.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ export default function Card({ content }) {
1111
return (
1212
<section className="green-card">
1313
<div className="green-card-header">
14-
<a href="/"><img src={content.picture}></img></a>
14+
<a href="/"><img src={content.picture} alt='content'></img></a>
1515
<div className="green-card-title">
1616
<strong>{content.name}</strong>
1717
<div>
@@ -27,7 +27,7 @@ export default function Card({ content }) {
2727
</div>
2828
</div>
2929
<div className="green-card-body">
30-
<img src={img} />
30+
<img src={img} alt="laptop" />
3131

3232
<div className="d-flex justify-content-between align-items-center mt-3">
3333
<h4 className="my-auto">YOUR STAKE</h4>

src/components/Home/AboutUs.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ export default class AboutUs extends Component {
2121
</div>
2222
<div className="col-md-6 mx-3 mx-md-0 text-center rotation-container">
2323
<div className="rotation"></div>
24-
<img src={aboutus} />
24+
<img src={aboutus} alt="about us" />
2525
</div>
2626
</div>
2727
</div >

src/components/Home/AdvisorCard.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ export default function AdvisorCard({ advisor }) {
88
return (
99
<section className="round-card advisor-card">
1010
<div className="round-card-header">
11-
<img src={advisor.picture}></img>
11+
<img src={advisor.picture} alt="avatar"></img>
1212
</div>
1313

1414
<div className="round-card-body">

src/components/Home/Hero.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ export default class Hero extends Component {
1515
<p className="text-center hero-description">BSCPad will empower crypto currency projects with the ability to distribute tokens and raise liquidity.</p>
1616
<div className="buttons">
1717
<button type="button" className="btn btn-warning button-large">View All Projects</button>
18-
<button type="button" className="btn btn-primary button-large">Buy On <img src={pancake_swap}></img> Pancake Swap</button>
18+
<button type="button" className="btn btn-primary button-large">Buy On <img src={pancake_swap} alt="pancake swap"></img> Pancake Swap</button>
1919
<button type="button" className="btn btn-success button-large">Apply For IDO</button>
2020
</div>
2121
<div className="buttons">
@@ -25,9 +25,9 @@ export default class Hero extends Component {
2525
</div>
2626
<div className="buttons">
2727
<h6>OUR PARTNERS</h6>
28-
<a href="www.google.com"><img src={partner_0} style={{ height: '46px' }} /></a>
29-
<a href="www.google.com"><img src={partner_1} style={{ height: '46px' }} /></a>
30-
<a href="www.google.com"><img src={partner_2} style={{ height: '46px' }} /></a>
28+
<a href="https://www.google.com"><img src={partner_0} style={{ height: '46px' }} alt="chainlink" /></a>
29+
<a href="https://www.google.com"><img src={partner_1} style={{ height: '46px' }} alt="ferrum network" /></a>
30+
<a href="https://www.google.com"><img src={partner_2} style={{ height: '46px' }} alt="bondly" /></a>
3131
</div>
3232
</div>
3333
);

src/components/Home/Round2.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ export default class Round2 extends Component {
99
<h2 className="col-12 text-center font-weight-bold round-title">ROUND 2 - FCFS ROUND</h2>
1010
<div className="row">
1111
<div className="col-md-6 mx-3 mx-md-0 text-center">
12-
<img src={img} />
12+
<img src={img} alt="network" />
1313
</div>
1414
<div className="col-md-6 mx-3 mx-md-0">
1515
<p className="hero-description">In round 2, the unsold tokens from the first round are made available. All tiered members can purchase an additional amount that is determined by a tier-based formula. The second round buying window opens at the same time for all members, regardless of tier level. This round is open until all tokens are sold, typically lasting for only a few minutes. After all the tokens are sold, the IDO is concluded.</p>

src/components/Projects/CustomCard.js

Lines changed: 5 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -2,24 +2,21 @@ import React from 'react';
22

33
import PropTypes from 'prop-types';
44

5-
// redux
6-
import { useSelector, useDispatch } from 'react-redux';
7-
85
import { SiWebpack, AiFillTwitterCircle, AiOutlineMedium, FaTelegramPlane, BsCircleFill } from 'react-icons/all';
96
import { ProgressBar } from 'react-bootstrap';
107

118
export default function CustomCard({ project }) {
129
return (
1310
<section className="custom-card">
1411
<div className="custom-card-header">
15-
<a href="/"><img src={project.picture}></img></a>
12+
<a href="/"><img src={project.picture} alt="project profile"></img></a>
1613
<div className="custom-card-title">
1714
<strong>{project.name}</strong>
1815
<div className="social-links">
19-
<a href="www.google.com"><SiWebpack className="social-link" /></a>
20-
<a href="www.google.com"><AiFillTwitterCircle className="social-link" /></a>
21-
<a href="www.google.com"><AiOutlineMedium className="social-link" /></a>
22-
<a href="www.google.com"><FaTelegramPlane className="social-link" /></a>
16+
<a href="https://www.google.com"><SiWebpack className="social-link" /></a>
17+
<a href="https://www.twitter.com"><AiFillTwitterCircle className="social-link" /></a>
18+
<a href="https://www.medium.com"><AiOutlineMedium className="social-link" /></a>
19+
<a href="https://www.telegram.com"><FaTelegramPlane className="social-link" /></a>
2320
</div>
2421
<span className="status" style={{ backgroundColor: `${project.status === 'Coming' ? 'rgb(240 185 19 / 26%)' : project.status === 'Open' ? 'rgb(92 184 92 / 26%)' : 'rgb(255 0 0 / 25%)'}`, color: `${project.status === 'Coming' ? '#f1b90c' : project.status === 'Open' ? '#5cb85c' : 'red'}` }}>
2522
<BsCircleFill style={{ fontSize: '.6rem', verticalAlign: 'middle' }} />

src/components/Staking/CheckpointCard.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@ import React from 'react';
22

33
import PropTypes from 'prop-types';
44

5-
import { stakings } from '../../assets/variables';
65
import { Form } from 'react-bootstrap';
76

87
export default function CheckpointCard({ content }) {

src/components/Staking/Checkpoints.js

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,6 @@ import React from 'react';
22

33
import { Form } from 'react-bootstrap';
44

5-
import PropTypes from 'prop-types';
6-
75
import CheckpointCard from './CheckpointCard';
86

97
import { stakings } from '../../assets/variables';

src/components/Staking/StakingCard.js

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,6 @@ import React from 'react';
22

33
import PropTypes from 'prop-types';
44

5-
import { stakings } from '../../assets/variables';
6-
75
export default function StakingCard({ content }) {
86
return (
97
<section className="round-card" style={{ marginBottom: `${['Stacked', 'Unstacked', 'Rewards'].includes(content.name) ? '30px' : undefined}` }}>

0 commit comments

Comments
 (0)