import { Result, Card, Typography } from "antd";
import { MessageTwoTone, BulbTwoTone, BookTwoTone, PlaySquareTwoTone } from '@ant-design/icons';
import OwncastLogo from "./components/logo"
import LogTable from "./components/log-table";
const { Title } = Typography;
const { Meta } = Card;
export default function Offline({ logs = [] }) {
const data = [
{
icon: ,
title: "Send some test content",
content: (
Test your server with any video you have around. Pass it to the test script and start streaming it.
./test/ocTestStream.sh yourVideo.mp4
),
},
{
icon: ,
title: "Use your broadcasting software",
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: (
)
}
];
return (
}
title="No stream is active."
subTitle="You should start one."
/>
{
data.map(item => (
))
}
);
}