Minor fixes

This commit is contained in:
2021-10-27 14:07:03 -03:00
parent 463dfc62dd
commit 153c72c398
3 changed files with 7 additions and 4 deletions

View File

@@ -1024,7 +1024,7 @@ header.demo h1 span.demoSpan:hover, header.demo h1 span.demoSpan:focus, header.d
height: 7vw;
}
}
.made-with-love a {
.made-with-love .link {
color: #ff8787;
}

View File

@@ -1,4 +1,4 @@
.made-with-love a {
.made-with-love .link {
color: #ff8787
}

View File

@@ -1,4 +1,6 @@
import React from 'react'
import { withRouter, } from 'react-router'
import { Link } from 'react-router-dom'
const Footer = (props) => {
return (
@@ -6,9 +8,10 @@ const Footer = (props) => {
{/* <p>
Made with 💓 by <a href="http://www.franp.xyz">Francisco Pessano</a>.
</p> */}
<a href="/credits-page">Credits</a>
<Link className="link" to='/credits-page'>Credits</Link>
</footer>
)
}
export default Footer
export default withRouter(Footer)