Footer and credits page done

This commit is contained in:
2021-10-25 22:40:56 -03:00
parent 6c1b02fde9
commit df03437d5e
14 changed files with 206 additions and 15 deletions

View File

@@ -0,0 +1,14 @@
import React from 'react'
const Footer = (props) => {
return (
<footer className={props.darkMode ? 'made-with-love dark-mode-component' : 'made-with-love'}>
<p>
Made with 💓 by <a href="http://www.franp.xyz">Francisco Pessano</a>.
</p>
<a href="/credits">Credits</a>
</footer>
)
}
export default Footer