You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
557 B
15 lines
557 B
import styles from '../styles/components/Footer.module.css'
|
|
import { FontAwesomeIcon } from '@fortawesome/react-fontawesome'
|
|
import { faHeart } from '@fortawesome/free-solid-svg-icons'
|
|
|
|
const Footer = () => (
|
|
<div>
|
|
<div className={styles.footer}>
|
|
<div className="container">
|
|
<h4>Made with <FontAwesomeIcon icon={faHeart} style={{color: "red"}} size="1x" /> by <a href="https://twitter.com/midblep" className="link" target="_blank">Midblep</a></h4>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
)
|
|
|
|
export default Footer |