-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathFooter.js
More file actions
31 lines (29 loc) · 916 Bytes
/
Footer.js
File metadata and controls
31 lines (29 loc) · 916 Bytes
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
import React from 'react';
import { Grid, Input, Button } from 'semantic-ui-react';
const Footer = () => (
<div style={{ padding: '2em 0', backgroundColor: '#f1f1f1', marginTop: '2em' }}>
<Grid container columns={3}>
<Grid.Column>
<h4>Explore</h4>
<p>Home</p>
<p>Questions</p>
<p>Articles</p>
<p>Tutorials</p>
</Grid.Column>
<Grid.Column>
<h4>Support</h4>
<p>FAQs</p>
<p>Help</p>
<p>Contact Us</p>
</Grid.Column>
<Grid.Column>
<h4>Stay connected</h4>
<Input action={{ color: 'teal', labelPosition: 'right', icon: 'mail', content: 'Subscribe' }} placeholder='Enter your email' />
</Grid.Column>
</Grid>
<div style={{ textAlign: 'center', marginTop: '2em' }}>
<p>DEV@Deakin 2022 | Privacy Policy | Terms | Code of Conduct</p>
</div>
</div>
);
export default Footer;