blob: 8e15a2d8e91290ae5ebb0071033aa83c133933df (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
|
import { h } from 'preact';
import Styles from './styles.module.scss';
function Footer() {
return (
<footer className={Styles.footer}>
© {new Date().getFullYear()} Jeanine White
<small className={Styles.byline}>🚀 Built by Astro</small>
</footer>
);
}
export default Footer;
|