umami/src/app/share/[...id]/Footer.tsx

16 lines
328 B
TypeScript
Raw Normal View History

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