0

Use logo in home page empty state

This commit is contained in:
Gabe Kangas 2020-11-03 00:03:40 -08:00
parent 0f06741309
commit 5f1519d722

View File

@ -23,6 +23,7 @@ import {
FETCH_INTERVAL,
} from "../utils/apis";
import { formatIPAddress, isEmptyObject } from "../utils/format";
import OwncastLogo from "./components/logo"
const { Title } = Typography;
@ -30,7 +31,10 @@ function Offline() {
return (
<div>
<Empty
image={Empty.PRESENTED_IMAGE_SIMPLE}
image={<OwncastLogo />}
imageStyle={{
height: 60,
}}
description={
<span>There is no stream currently active. Start one.</span>
}