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.
|
|
|
import styles from '../styles/components/Footer.module.css'
|
|
|
|
import { FontAwesomeIcon } from '@fortawesome/react-fontawesome'
|
|
|
|
import { faHeart } from '@fortawesome/free-solid-svg-icons'
|
|
|
|
|
|
|
|
export default function Footer() {
|
|
|
|
return (
|
|
|
|
<div>
|
|
|
|
<div className={styles.footer}>
|
|
|
|
<div className="container">
|
|
|
|
<p>
|
|
|
|
<b>
|
|
|
|
Made with <FontAwesomeIcon icon={faHeart} style={{color: "#63C5DA"}} size="1x" id="clickMeow" /> by <a href="https://twitter.com/midblep" className="link" target="_blank">Midblep</a>
|
|
|
|
</b>
|
|
|
|
<br/>
|
|
|
|
NextJS // Vercel // Airtable
|
|
|
|
</p>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<script src="js/meow.js"></script>
|
|
|
|
</div>
|
|
|
|
)
|
|
|
|
}
|