Website/components/bottombar.js

9 lines
227 B
JavaScript
Raw Normal View History

2021-12-21 19:08:36 +00:00
import styles from '../styles/BottomBar.module.css'
export default function BottomBar() {
return (
<div className={styles.BottomBar}>
2022-02-15 17:08:29 +00:00
Website by TheRed, {new Date().getFullYear()}
2021-12-21 19:08:36 +00:00
</div>
)
}