forked from allmannyttan/apifirst
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Footer.js
58 lines (53 loc) · 2.57 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
import React, { useContext } from "react";
import AllmannyttanLogo from "../assets/images/resources/sveriges-allmannytta.jpg";
import NikolaiLogo from "../assets/images/resources/nikolai.png";
import IteamLogo from "../assets/images/resources/iteam.png";
import ProxifyLogo from "../assets/images/resources/proxify.png";
const Footer = () => {
return (
<div>
<footer className="site-footer" id="footer">
<div className="site-footer__upper">
<p>Vi som står bakom</p>
<div className="container">
<div className="row">
<div className="col-lg-12">
<div className="footer-widget footer-widget__about">
<a href="https://www.linkedin.com/company/allm%C3%A4nnyttans-digitaliseringsinitiativ/">
<img src={AllmannyttanLogo} width="180" alt="" />
</a>
<a href="https://www.linkedin.com/company/iteam1337/">
<img src={IteamLogo} width="180" alt="" />
</a>
<a href="https://www.linkedin.com/company/nikolaidev/">
<img src={NikolaiLogo} width="180" alt="" />
</a>
<a href="https://www.linkedin.com/company/lennox-public-relations/">
<img src="https://images.squarespace-cdn.com/content/v1/5f12fde1f67d8f0ee71c496d/1616406911096-UF297OQVRGY7A9T15IOW/ke17ZwdGBToddI8pDm48kI_tQScU0yp6ViEoQ_S7xc17gQa3H78H3Y0txjaiv_0fDoOvxcdMmMKkDsyUqMSsMWxHk725yiiHCCLfrh8O1z5QPOohDIaIeljMHgDF5CVlOqpeNLcJ80NK65_fV7S1Ua4pajMFhX3Rz7xjXCazl056suAr1I5mPtKc-JWB0C8oZ4SODUbdTU85jG6Jwp5K1Q/Lenno_logo_ruta_pr_pink.jpg?format=1500w" width="180" alt="" />
</a>
<a href="https://proxify.io/">
<img src={ProxifyLogo} width="180" alt="" />
</a>
{
// add your logo here:
}
</div>
</div>
<div className="col-lg-12 d-flex align-items-center justify-content-md-center justify-content-sm-center">
<div className="footer-widget">
<div className="footer-widget__social">
Vill du vara med här? Gör en pull request:
<a href="https://github.com/allmannyttan/apifirst">
<i className="fab fa-github"></i>
</a>
</div>
</div>
</div>
</div>
</div>
</div>
</footer>
</div>
);
};
export default Footer;