diff --git a/web/pages/offline-notice.tsx b/web/pages/offline-notice.tsx index 4c715db01..d8b0760d3 100644 --- a/web/pages/offline-notice.tsx +++ b/web/pages/offline-notice.tsx @@ -1,5 +1,5 @@ import { Result, Card } from "antd"; -import { MessageTwoTone, BulbTwoTone, BookTwoTone, PlaySquareTwoTone } from '@ant-design/icons'; +import { MessageTwoTone, QuestionCircleTwoTone, BookTwoTone, PlaySquareTwoTone } from '@ant-design/icons'; import OwncastLogo from "./components/logo" import LogTable from "./components/log-table"; @@ -7,18 +7,6 @@ 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", @@ -41,6 +29,17 @@ export default function Offline({ logs = [] }) { 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. +
+ ), } ];