-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathfooterBox.tsx
46 lines (45 loc) · 1.2 KB
/
footerBox.tsx
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
import styled from "styled-components";
import {Container} from 'react-bootstrap';
const Footer = styled.div`
height: 80px;
margin-top: 60px;
width: 100%;
padding-top: 15px;
background: #fff;
font-size: 14px;
.midBox{
display: flex;
justify-content: space-between;
align-items: center;
}
img{
width: 40px;
height: 40px;
}
.lft{
padding-left: 10px;
}
a{
display: inline-block;
margin-left: 20px;
}
`
export default function footerBox(){
return <Footer>
<Container>
<div className="midBox">
<a href="https://web3camp.us" target="_blank" rel="noreferrer">
<div className="lft">© 2022 Web3camp.us</div>
</a>
<div>
<a href="https://github.com/Web3Camp-Labs/Polkadot-Wallet-Generator" target="_blank" rel="noreferrer">
<img src="./github.png" alt=""/>
</a>
<a href="https://twitter.com/Web3Camp" target="_blank" rel="noreferrer">
<img src="./Twitter.png" alt=""/>
</a>
</div>
</div>
</Container>
</Footer>
}