summaryrefslogtreecommitdiff
path: root/examples/portfolio/src/components/Footer/index.jsx
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}>
      &copy; {new Date().getFullYear()} Jeanine White
      <small className={Styles.byline}>🚀 Built by Astro</small>
    </footer>
  );
}
export default Footer;