Add logo component and social links

This commit is contained in:
Gabe Kangas
2022-05-16 21:44:09 -07:00
parent a1c06ec9de
commit 528ae4c1ad
39 changed files with 104 additions and 35 deletions

View File

@@ -9,5 +9,9 @@ interface Props {
export default function FooterComponent(props: Props) {
const { version } = props;
return <Footer style={{ textAlign: 'center', height: '64px' }}>Owncast {version}</Footer>;
return (
<Footer style={{ textAlign: 'center', height: '64px' }}>
<a href="https://owncast.online">{version}</a>
</Footer>
);
}