mirror of
https://github.com/kremalicious/umami.git
synced 2024-11-15 17:55:08 +01:00
34 lines
971 B
JavaScript
34 lines
971 B
JavaScript
import React from 'react';
|
|
import classNames from 'classnames';
|
|
import { FormattedMessage } from 'react-intl';
|
|
import Link from 'components/common/Link';
|
|
import styles from './Footer.module.css';
|
|
import useVersion from 'hooks/useVersion';
|
|
import { HOMEPAGE_URL, VERSION_URL } from 'lib/constants';
|
|
|
|
export default function Footer() {
|
|
const { current } = useVersion();
|
|
|
|
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={VERSION_URL}>{`v${current}`}</Link>
|
|
</div>
|
|
</footer>
|
|
);
|
|
}
|