import { Result, Card } from "antd"; import { MessageTwoTone, QuestionCircleTwoTone, BookTwoTone, PlaySquareTwoTone } from '@ant-design/icons'; import OwncastLogo from "./components/logo" import LogTable from "./components/log-table"; const { Meta } = Card; export default function Offline({ logs = [] }) { const data = [ { icon: , title: "Use your broadcasting software", content: (
Learn how to point your existing software to your new server and start streaming your content.
) }, { icon: , title: "Chat is disabled", content: "Chat will continue to be disabled until you begin a live stream." }, { icon: , title: "Embed your video onto other sites", content: (
Learn how you can add your Owncast stream to other sites you control.
) }, { icon: , title: "Need some help?", content: (
Take a look at our troubleshooting steps to see if there's any common problems you're running into. If you still have questions let us know how we can help.
), } ]; return ( <>
} title="No stream is active." subTitle="You should start one." />
{ data.map(item => ( )) }
); }