mirror of
https://github.com/kremalicious/umami.git
synced 2024-11-15 09:45:04 +01:00
35 lines
1.0 KiB
JavaScript
35 lines
1.0 KiB
JavaScript
import { useRouter } from 'next/router';
|
|
import Script from 'next/script';
|
|
import classNames from 'classnames';
|
|
import { FormattedMessage } from 'react-intl';
|
|
import Link from 'components/common/Link';
|
|
import styles from './Footer.module.css';
|
|
import { CURRENT_VERSION, HOMEPAGE_URL, REPO_URL } from 'lib/constants';
|
|
|
|
export default function Footer() {
|
|
const { pathname } = useRouter();
|
|
|
|
return (
|
|
<footer className={classNames(styles.footer, 'row')}>
|
|
<div className="col-12 col-md-4" />
|
|
<div className="col-12 col-md-4">
|
|
<FormattedMessage
|
|
id="message.powered-by"
|
|
defaultMessage="Powered by {name}"
|
|
values={{
|
|
name: (
|
|
<Link href={HOMEPAGE_URL}>
|
|
<b>umami</b>
|
|
</Link>
|
|
),
|
|
}}
|
|
/>
|
|
</div>
|
|
<div className={classNames(styles.version, 'col-12 col-md-4')}>
|
|
<Link href={REPO_URL}>{`v${CURRENT_VERSION}`}</Link>
|
|
</div>
|
|
{!pathname.includes('/share/') && <Script src={`/telemetry.js`} />}
|
|
</footer>
|
|
);
|
|
}
|