mirror of
https://github.com/koodiklinikka/koodiklinikka.fi.git
synced 2026-03-12 11:03:14 +00:00
Next.js-ify, step 1
This commit is contained in:
44
components/Footer.jsx
Normal file
44
components/Footer.jsx
Normal file
@@ -0,0 +1,44 @@
|
||||
export function Footer() {
|
||||
return (
|
||||
<footer>
|
||||
<div className="sponsors">
|
||||
<div className="sponsors__label">Yhteistyössä</div>
|
||||
<a href="http://futurice.com/" target="_blank">
|
||||
<img src="/static/images/futurice.svg" className="sponsor sponsor__futurice" />
|
||||
</a>
|
||||
<a href="http://www.metosin.fi/" target="_blank">
|
||||
<img src="/static/images/metosin.svg" className="sponsor sponsor__metosin" />
|
||||
</a>
|
||||
<a href="https://www.solita.fi/" target="_blank">
|
||||
<img src="/static/images/solita.svg" className="sponsor" />
|
||||
</a>
|
||||
<a href="http://wakeone.co/" target="_blank">
|
||||
<img src="/static/images/wakeone.svg" className="sponsor sponsor__wakeone" />
|
||||
</a>
|
||||
<a href="https://www.nordea.com/" target="_blank">
|
||||
<img src="/static/images/nordea.png" className="sponsor sponsor__nordea" />
|
||||
</a>
|
||||
</div>
|
||||
<div className="contacts">
|
||||
<div>
|
||||
<a href="https://koodiklinikka.slack.com">
|
||||
<i className="fa fa-slack" />
|
||||
</a>
|
||||
<a href="https://github.com/koodiklinikka/koodiklinikka.fi">
|
||||
<i className="fa fa-github" />
|
||||
</a>
|
||||
<a href="https://twitter.com/koodiklinikka">
|
||||
<i className="fa fa-twitter" />
|
||||
</a>
|
||||
<a href="https://www.linkedin.com/groups/12025476">
|
||||
<i className="fa fa-linkedin" />
|
||||
</a>
|
||||
<a href="https://www.facebook.com/koodiklinikka">
|
||||
<i className="fa fa-facebook" />
|
||||
</a>
|
||||
<div id="email" className="email" />
|
||||
</div>
|
||||
</div>
|
||||
</footer>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user