-
Notifications
You must be signed in to change notification settings - Fork 60
/
Copy pathFooterPage.js
156 lines (153 loc) · 4.41 KB
/
FooterPage.js
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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
import React from "react";
import { Row, Col } from "antd";
import { Link } from "react-router-dom";
import { Typography } from "antd";
import {
InfoCircleOutlined,
LockOutlined,
FileTextOutlined,
BugOutlined,
GithubOutlined,
ExclamationCircleOutlined,
PhoneOutlined,
UnorderedListOutlined,
MailOutlined,
EnvironmentOutlined,
} from "@ant-design/icons";
import "../../containers/home/footer.css";
const { Title } = Typography;
function Footer() {
return (
<footer className="footer">
<div className="footer-wrap">
<Row justify="space-around">
<Col xl={8} lg={6} md={24} sm={24} xs={24}>
<Title level={2}>Community Dictionary</Title>
<Title level={4}>Your everyday online dictionary</Title>
</Col>
<Col xl={6} lg={6} md={24} sm={24} xs={24}>
<div className="footer-center">
<h2>About</h2>
<Row>
<Col span={2}>
<InfoCircleOutlined />
</Col>
<Col span={22}>
<Link to="#" className="link">
About Community Dictionary
</Link>
</Col>
</Row>
<Row>
<Col span={2}>
<LockOutlined />
</Col>
<Col span={22}>
<Link to="#" className="link">
Privacy and Security
</Link>
</Col>
</Row>
<Row>
<Col span={2}>
<FileTextOutlined />
</Col>
<Col span={22}>
<Link to="/termsandconditions" className="link">
Terms and Conditions
</Link>
</Col>
</Row>
</div>
</Col>
<Col xl={4} lg={6} md={24} sm={24} xs={24}>
<div className="footer-center">
<h2>Help</h2>
<Row>
<Col span={2}>
<UnorderedListOutlined />
</Col>
<Col span={22}>
<Link to="#" className="link">
FAQ
</Link>
</Col>
</Row>
<Row>
<Col span={2}>
<BugOutlined />
</Col>
<Col span={22}>
<Link to="#" className="link">
Bug Report
</Link>
</Col>
</Row>
<Row>
<Col span={2}>
<GithubOutlined />
</Col>
<Col span={22}>
<Link to="#" className="link">
GitHub
</Link>
</Col>
</Row>
<Row>
<Col span={2}>
<ExclamationCircleOutlined />
</Col>
<Col span={22}>
<Link to="#" className="link">
Issues
</Link>
</Col>
</Row>
</div>
</Col>
<Col xl={4} lg={6} md={24} sm={24} xs={24}>
<div className="footer-center">
<h2>Contact Us</h2>
<Row>
<Col span={2}>
<PhoneOutlined />
</Col>
<Col span={22}>
<Link to="#" className="link">
+94 XXXXXXXXX
</Link>
</Col>
</Row>
<Row>
<Col span={2}>
<MailOutlined />
</Col>
<Col span={22}>
<Link to="#" className="link">
</Link>
</Col>
</Row>
<Row>
<Col span={2}>
<EnvironmentOutlined />
</Col>
<Col span={22}>
<Link to="#" className="link">
Location
</Link>
</Col>
</Row>
</div>
</Col>
</Row>
</div>
<Row className="bottom-bar">
<Col lg={24} sm={24}>
<span style={{ textAlign: "center" }}>Copyright © SCoReLab</span>
</Col>
</Row>
</footer>
);
}
export default Footer;