Browse Source

Link to new help page from offline notice

pull/1886/head
Gabe Kangas 5 years ago
parent
commit
cdd3525e4e
  1. 8
      web/pages/help.tsx
  2. 7
      web/pages/offline-notice.tsx

8
web/pages/help.tsx

@ -59,7 +59,7 @@ export default function Help(props: Props) { @@ -59,7 +59,7 @@ export default function Help(props: Props) {
},
{
icon: <SlidersTwoTone style={{ fontSize: '24px' }} />,
title: "I want to tweak my encoding",
title: "I want to tweak my encoding quality or performance",
content: (
<div>
<a href="https://owncast.online/docs/encoding/" target="_blank" rel="noopener noreferrer"><LinkOutlined/> Learn more</a>
@ -83,8 +83,8 @@ export default function Help(props: Props) { @@ -83,8 +83,8 @@ export default function Help(props: Props) {
title: "I found a bug",
content: (
<div>
If you found a bug, then report it in our
<a href="https://github.com/owncast/owncast/" target="_blank" rel="noopener noreferrer"> Github Issues</a>
If you found a bug, then please
<a href="https://github.com/owncast/owncast/issues/new/choose" target="_blank" rel="noopener noreferrer"> let us know</a>
</div>
)
},
@ -94,7 +94,7 @@ export default function Help(props: Props) { @@ -94,7 +94,7 @@ export default function Help(props: Props) {
content: (
<div>
Most general questions are answered in our
<a href="https://owncast.online/docs/faq/" target="_blank" rel="noopener noreferrer"> FAQ</a>
<a href="https://owncast.online/docs/faq/" target="_blank" rel="noopener noreferrer"> FAQ</a> or exist in our <a href="https://github.com/owncast/owncast/discussions">discussions</a>
</div>
)
},

7
web/pages/offline-notice.tsx

@ -2,6 +2,7 @@ import { Result, Card } from "antd"; @@ -2,6 +2,7 @@ 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";
import Link from 'next/link';
const { Meta } = Card;
@ -32,12 +33,10 @@ export default function Offline({ logs = [] }) { @@ -32,12 +33,10 @@ export default function Offline({ logs = [] }) {
},
{
icon: <QuestionCircleTwoTone twoToneColor="#ffd33d" />,
title: "Need some help?",
title: "Not sure what to do next?",
content: (
<div>
Take a look at our <a target="_blank" href="https://owncast.online/docs/troubleshooting">troubleshooting steps </a>
to see if there's any common problems you're running into. If you still have questions <a target="_blank" href="https://github.com/owncast/owncast/issues/new/choose">
let us know how we can help</a>.
If you're having issues or would like to know how to customize and configure your Owncast server visit <Link href="/help">the help page.</Link>
</div>
),
}

Loading…
Cancel
Save