Skip to content
This repository was archived by the owner on Apr 21, 2026. It is now read-only.

Commit 81444b7

Browse files
author
dpatanin
committed
add icon reference, remove unnecessary homepage link
1 parent f97e47f commit 81444b7

1 file changed

Lines changed: 7 additions & 7 deletions

File tree

src/components/Footer.js

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1+
import { graphql, StaticQuery } from 'gatsby';
12
import React from 'react';
2-
import { graphql, Link, StaticQuery } from 'gatsby';
33

4-
const Footer = props => (
4+
const Footer = (props) => (
55
<div className="footer-strip">
66
<div className="container">
77
<div className="row">
@@ -11,9 +11,6 @@ const Footer = props => (
1111
{props.data.site.siteMetadata.title}
1212
</h3>
1313
<ul className="footer-menu">
14-
<li>
15-
<Link to="/">Home</Link>
16-
</li>
1714
<li>
1815
<a href="https://www.iteratec.de/impressum/">Imprint</a>
1916
</li>
@@ -22,6 +19,9 @@ const Footer = props => (
2219
Data Protection
2320
</a>
2421
</li>
22+
<li>
23+
<a href="https://www.flaticon.com/">Icons</a>
24+
</li>
2525
<li className="copyright">
2626
<a href="https://www.iteratec.de">
2727
© {new Date().getFullYear()}{' '}
@@ -36,7 +36,7 @@ const Footer = props => (
3636
</div>
3737
);
3838

39-
export default props => (
39+
export default (props) => (
4040
<StaticQuery
4141
query={graphql`
4242
query {
@@ -48,6 +48,6 @@ export default props => (
4848
}
4949
}
5050
`}
51-
render={data => <Footer data={data} />}
51+
render={(data) => <Footer data={data} />}
5252
/>
5353
);

0 commit comments

Comments
 (0)