mirror of
https://github.com/kremalicious/umami.git
synced 2024-11-15 17:55:08 +01:00
25 lines
751 B
JavaScript
25 lines
751 B
JavaScript
import React from 'react';
|
|
import { FormattedMessage } from 'react-intl';
|
|
import Link from 'next/link';
|
|
import classNames from 'classnames';
|
|
import Button from 'components/common/Button';
|
|
import Logo from 'assets/logo.svg';
|
|
import styles from './Footer.module.css';
|
|
|
|
export default function Footer() {
|
|
return (
|
|
<footer className="container">
|
|
<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>
|
|
</div>
|
|
</footer>
|
|
);
|
|
}
|