mirror of
https://github.com/kremalicious/umami.git
synced 2025-02-01 20:39:44 +01:00
15 lines
314 B
JavaScript
15 lines
314 B
JavaScript
import { CURRENT_VERSION, HOMEPAGE_URL } from 'lib/constants';
|
|
import styles from './Footer.module.css';
|
|
|
|
export function Footer() {
|
|
return (
|
|
<footer className={styles.footer}>
|
|
<a href={HOMEPAGE_URL}>
|
|
<b>umami</b> {`v${CURRENT_VERSION}`}
|
|
</a>
|
|
</footer>
|
|
);
|
|
}
|
|
|
|
export default Footer;
|