mirror of
https://github.com/FranP-code/Hangman-game-with-React.git
synced 2025-10-13 00:42:32 +00:00
Footer and credits page done
This commit is contained in:
14
src/components/Footer/Footer.jsx
Normal file
14
src/components/Footer/Footer.jsx
Normal 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
|
||||
Reference in New Issue
Block a user