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