Add hyperlink to logo in the footer to point home
This commit is contained in:
parent
b5c1038e95
commit
92d1fab8c6
1 changed files with 4 additions and 1 deletions
|
@ -1,5 +1,6 @@
|
|||
import React from "react";
|
||||
import { FormattedMessage, FormattedHTMLMessage } from 'react-intl';
|
||||
import { Link } from 'react-router-dom';
|
||||
import {
|
||||
Footer as FooterBase,
|
||||
Row,
|
||||
|
@ -24,7 +25,9 @@ function Footer() {
|
|||
<div className="col-md-10 mx-md-auto">
|
||||
|
||||
<Col className="logoFooter" md="4">
|
||||
<img alt="" src={FooterLogo} />
|
||||
<Link to="/">
|
||||
<img alt="" src={FooterLogo} />
|
||||
</Link>
|
||||
</Col>
|
||||
|
||||
<Col md="4">
|
||||
|
|
Loading…
Reference in a new issue