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.
13 lines
349 B
13 lines
349 B
3 years ago
|
import styles from '../styles/components/Footer.module.css'
|
||
|
|
||
|
const Header = () => (
|
||
|
<div>
|
||
|
<div className={styles.footer}>
|
||
|
<div className="container">
|
||
|
<h4>Made with love by <a href="https://twitter.com/midblep" className="link">Mid</a></h4>
|
||
|
</div>
|
||
|
</div>
|
||
|
</div>
|
||
|
)
|
||
|
|
||
|
export default Header
|