umami/components/layout/Footer.js

15 lines
314 B
JavaScript
Raw Normal View History

2023-08-02 07:56:52 +00:00
import { CURRENT_VERSION, HOMEPAGE_URL } from 'lib/constants';
import styles from './Footer.module.css';
2023-04-21 15:00:42 +00:00
export function Footer() {
2020-08-07 09:27:12 +00:00
return (
2023-03-04 05:26:39 +00:00
<footer className={styles.footer}>
2023-08-02 07:56:52 +00:00
<a href={HOMEPAGE_URL}>
<b>umami</b> {`v${CURRENT_VERSION}`}
</a>
2020-08-07 09:27:12 +00:00
</footer>
);
}
2023-04-21 15:00:42 +00:00
export default Footer;