umami/components/layout/Footer.js

29 lines
694 B
JavaScript
Raw Normal View History

2020-08-07 11:27:12 +02:00
import React from 'react';
2020-09-06 02:27:01 +02:00
import { FormattedMessage } from 'react-intl';
2020-08-07 11:27:12 +02:00
import styles from './Footer.module.css';
export default function Footer() {
const version = process.env.VERSION;
2020-08-07 11:27:12 +02:00
return (
2020-08-15 10:17:15 +02:00
<footer className="container">
2020-09-16 04:16:05 +02:00
<div className={styles.footer}>
<div />
<div>
<FormattedMessage
id="footer.powered-by"
defaultMessage="Powered by {name} {version}"
values={{
name: (
<a href="https://umami.is">
<b>umami</b>
</a>
),
}}
/>
</div>
<div>{`v${version}`}</div>
2020-08-15 10:17:15 +02:00
</div>
2020-08-07 11:27:12 +02:00
</footer>
);
}