Skip to content

Commit 36e9d03

Browse files
committed
Using a footer tag instead of a div for better semantics
1 parent ccaab88 commit 36e9d03

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

components/footer/footer.jsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import './footer-style';
77

88
export default (props) => {
99
return (
10-
<div className="footer">
10+
<footer className="footer">
1111
<Container className="footer__inner">
1212
<section className="footer__left">
1313
<Link className="footer__link" to="/get-started">Get Started</Link>
@@ -30,6 +30,6 @@ export default (props) => {
3030
<CC />
3131
</section>
3232
</Container>
33-
</div>
33+
</footer>
3434
);
3535
};

0 commit comments

Comments
 (0)