-
-
Notifications
You must be signed in to change notification settings - Fork 186
Expand file tree
/
Copy pathFooter.js
More file actions
102 lines (99 loc) · 3.61 KB
/
Footer.js
File metadata and controls
102 lines (99 loc) · 3.61 KB
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
import React from 'react'
import './Footer.css'
import fb from '../../assets/facebook.png'
import twitter from '../../assets/twitter.png'
import LinkedIn from '../../assets/linkedin.png'
import inst from '../../assets/instagram.png'
function Footer() {
return (
<div className='footer'>
<div className="sb-footer-section-padding">
<div className="sb-footer-links">
<div className="sb-footer-links-div">
<h4>For Business</h4>
<a href="/employer">
<p>Employer</p>
</a>
<a href="/healthplan">
<p>Health Plan</p>
</a>
<a href="/individual">
<p>Individual</p>
</a>
</div>
<div className="sb-footer-links-div">
<h4>Resources</h4>
<a href="/employer">
<p>Resources Center</p>
</a>
<a href="/healthplan">
<p>Testimonials</p>
</a>
<a href="/individual">
<p>STV</p>
</a>
</div>
<div className="sb-footer-links-div">
<h4>Partners</h4>
<a href="/employer">
<p>Product Hunt</p>
</a>
</div>
<div className="sb-footer-links-div">
<h4>Company</h4>
<a href="/about">
<p>About</p>
</a>
<a href="/https://discord.com/invite/2nN2VqwNaK">
<p>Discord</p>
</a>
<a href="/career">
<p>career</p>
</a>
<a href="/contact">
<p>Contact</p>
</a>
</div>
<div className="sb-footer-links-div">
<h4>Coming soon on</h4>
<div className="socialmedia">
<p><img src={fb} alt=''/></p>
<p><img src={twitter} alt=''/></p>
<p><img src={LinkedIn} alt=''/></p>
<p><img src={inst} alt=''/></p>
</div>
</div>
</div>
<hr></hr>
<div className="sb-footer-below">
<div className="sb-footer-copyright">
<p>@{new Date().getFullYear()} Minute Magic All right reserved</p>
</div>
<div className="sb-footer-below-links">
<a href="/term">
<div>
<p>Term & Conditions</p>
</div>
</a>
<a href="/privacy">
<div>
<p>Privacy</p>
</div>
</a>
<a href="/security">
<div>
<p>Security</p>
</div>
</a>
<a href="/cookie">
<div>
<p>Cookie Declaration</p>
</div>
</a>
</div>
</div>
</div>
</div>
)
}
export default Footer