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-09-16 05:34:30 +02:00
|
|
|
import Link from 'components/common/Link';
|
2020-08-07 11:27:12 +02:00
|
|
|
import styles from './Footer.module.css';
|
|
|
|
|
|
|
|
export default function Footer() {
|
2020-09-10 01:12:29 +02:00
|
|
|
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
|
2020-09-17 07:29:40 +02:00
|
|
|
id="message.powered-by"
|
2020-09-16 05:34:30 +02:00
|
|
|
defaultMessage="Powered by {name}"
|
2020-09-16 04:16:05 +02:00
|
|
|
values={{
|
|
|
|
name: (
|
2020-09-16 05:34:30 +02:00
|
|
|
<Link href="https://umami.is">
|
2020-09-16 04:16:05 +02:00
|
|
|
<b>umami</b>
|
2020-09-16 05:34:30 +02:00
|
|
|
</Link>
|
2020-09-16 04:16:05 +02:00
|
|
|
),
|
|
|
|
}}
|
|
|
|
/>
|
|
|
|
</div>
|
2020-09-10 01:12:29 +02:00
|
|
|
<div>{`v${version}`}</div>
|
2020-08-15 10:17:15 +02:00
|
|
|
</div>
|
2020-08-07 11:27:12 +02:00
|
|
|
</footer>
|
|
|
|
);
|
|
|
|
}
|