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-15 10:17:15 +02:00
|
|
|
import Link from 'next/link';
|
2020-08-07 11:27:12 +02:00
|
|
|
import classNames from 'classnames';
|
2020-08-15 10:17:15 +02:00
|
|
|
import Button from 'components/common/Button';
|
|
|
|
import Logo from 'assets/logo.svg';
|
2020-08-07 11:27:12 +02:00
|
|
|
import styles from './Footer.module.css';
|
|
|
|
|
|
|
|
export default function Footer() {
|
|
|
|
return (
|
2020-08-15 10:17:15 +02:00
|
|
|
<footer className="container">
|
2020-09-08 00:25:09 +02:00
|
|
|
<div className={classNames(styles.footer, 'row justify-content-center')}>
|
|
|
|
<FormattedMessage id="footer.powered-by" defaultMessage="powered by" />
|
|
|
|
<Link href="https://umami.is">
|
|
|
|
<a>
|
|
|
|
<Button className={styles.button} icon={<Logo />} size="small">
|
|
|
|
<b>umami</b>
|
|
|
|
</Button>
|
|
|
|
</a>
|
|
|
|
</Link>
|
2020-08-15 10:17:15 +02:00
|
|
|
</div>
|
2020-08-07 11:27:12 +02:00
|
|
|
</footer>
|
|
|
|
);
|
|
|
|
}
|