forked from iamsushank/mutual-cart-3380
-
Notifications
You must be signed in to change notification settings - Fork 0
/
footer.js
81 lines (81 loc) · 2.18 KB
/
footer.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
let footer = () => {
return `
<div id="footer">
<div id="col-1">
<img
src="https://uploads-ssl.webflow.com/5c77a918ef19681741be7bca/5fc9236f9ab08c7bdf83fe75_Logo-300px.png"
alt=""
/>
<p>© 2022 My Hours.</p>
<p>All rights reserved.</p>
</div>
<div class="cols">
<h2>Product</h2>
<a href="#"> How it works</a>
<br />
<a href="#">Features</a>
<br />
<a href="#">Mobile app</a>
<br />
<a href="#">Use case collection</a>
<br />
<a href="#">Pricing</a>
<br />
<a href="#">Guides</a>
<br />
<a href="#">Customer Reviews</a>
<br />
<a href="#">Start Free</a>
</div>
<div class="cols">
<h2>Resources</h2>
<a href="#"> Time Tracking Library</a>
<br />
<a href="#">About</a>
<br />
<a href="#">Terms of Use</a>
<br />
<a href="#">Sitemap</a>
<br />
<a href="#">Project Management Software</a>
<br />
<a href="#">Time Management Apps</a>
<br />
<a href="#">Best Time Tracking Apps of 2022</a>
<br />
<a href="#">Free Time Card Calculator</a>
</div>
<div class="cols">
<h2>Use Cases</h2>
<a href="#"> Project billing</a>
<br />
<a href="#">Time reports and Project analytics</a>
<br />
<a href="#">Time reports and Project analytics</a>
<br />
<a href="#">Expense tracking</a>
<br />
<a href="#">Calculating project profitability</a>
<br />
<a href="#">Timesheet time tracking</a>
</div>
<div class="cols">
<h2>Integrations</h2>
<a href="#"> QuickBooks</a>
<br />
<a href="#">Zapier</a>
</div>
<div class="cols">
<h2>Social</h2>
<a href="https://www.facebook.com/myHoursTeam/">Facebook</a>
<br />
<a href="https://twitter.com/MyHoursTeam">Twitter</a>
</div>
</div>
<div>
<p id="foot-line">
Looking for employee attendance and absence tracking? Visit <a href="https://allhours.com/?_ga=2.26538617.5131411.1658208313-1044255821.1658208313"><strong> All Hours.</strong></a>
</p>
</div>`;
};
export default footer;