2022-04-28 18:54:33 +02:00
|
|
|
import { Layout } from 'antd';
|
2022-07-11 01:42:35 +02:00
|
|
|
import s from './Footer.module.scss';
|
2022-04-28 18:54:33 +02:00
|
|
|
|
|
|
|
const { Footer } = Layout;
|
|
|
|
|
2022-05-12 08:31:31 +02:00
|
|
|
interface Props {
|
|
|
|
version: string;
|
|
|
|
}
|
|
|
|
|
|
|
|
export default function FooterComponent(props: Props) {
|
2022-04-28 23:36:05 +02:00
|
|
|
const { version } = props;
|
2022-04-28 18:54:33 +02:00
|
|
|
|
2022-05-17 06:44:09 +02:00
|
|
|
return (
|
2022-07-11 01:42:35 +02:00
|
|
|
<Footer className={s.footer}>
|
2022-05-17 06:44:09 +02:00
|
|
|
<a href="https://owncast.online">{version}</a>
|
|
|
|
</Footer>
|
|
|
|
);
|
2022-04-28 18:54:33 +02:00
|
|
|
}
|