Update footer
This commit is contained in:
@@ -1,8 +1,5 @@
|
||||
import { Layout } from 'antd';
|
||||
import s from './Footer.module.scss';
|
||||
|
||||
const { Footer } = Layout;
|
||||
|
||||
interface Props {
|
||||
version: string;
|
||||
}
|
||||
@@ -11,8 +8,27 @@ export default function FooterComponent(props: Props) {
|
||||
const { version } = props;
|
||||
|
||||
return (
|
||||
<Footer className={s.footer}>
|
||||
<a href="https://owncast.online">{version}</a>
|
||||
</Footer>
|
||||
<div className={s.footer}>
|
||||
<div className={s.text}>
|
||||
Powered by <a href="https://owncast.online">{version}</a>
|
||||
</div>
|
||||
<div className={s.links}>
|
||||
<div className={s.item}>
|
||||
<a href="https://owncast.online/docs" target="_blank" rel="noreferrer">
|
||||
Documentation
|
||||
</a>
|
||||
</div>
|
||||
<div className={s.item}>
|
||||
<a href="https://owncast.online/help" target="_blank" rel="noreferrer">
|
||||
Contribute
|
||||
</a>
|
||||
</div>
|
||||
<div className={s.item}>
|
||||
<a href="https://github.com/owncast/owncast" target="_blank" rel="noreferrer">
|
||||
Source
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user