import { Button, Card, Col, Divider, Row } from 'antd'
import Meta from 'antd/lib/card/Meta'
import Title from 'antd/lib/typography/Title'
import {
AlertOutlined,
AlertTwoTone,
ApiTwoTone,
BookOutlined,
BugTwoTone,
CameraTwoTone,
DatabaseTwoTone,
DislikeTwoTone,
EditTwoTone,
FireFilled,
FireOutlined,
Html5TwoTone,
LinkOutlined,
QuestionCircleFilled,
QuestionCircleTwoTone,
SettingTwoTone,
SlidersTwoTone,
VideoCameraTwoTone
} from '@ant-design/icons';
import React from 'react'
import Text from 'antd/lib/typography/Text';
interface Props { }
export default function Help(props: Props) {
const questions = [
{
icon: ,
title: "I want to configure my owncast instance",
content: (
)
},
{
icon: ,
title: "I need help configuring my broadcasting software",
content: (
)
},
{
icon: ,
title: "I want to embed my stream into another site",
content: (
)
},
{
icon: ,
title: "I want to customize my website",
content: (
)
},
{
icon: ,
title: "I want to tweak my encoding",
content: (
)
},
{
icon: ,
title: "I want to offload my video to an external storage provider",
content: (
)
},
]
const otherResources = [
{
icon: ,
title: "I found a bug",
content: (
)
},
{
icon: ,
title: "I have a general question",
content: (
Most general questions are answered in our
FAQ
)
},
{
icon: ,
title: "I want to use the API",
content: (
)
}
]
return (
How can we help you?
Troubleshooting
Documentation
Common tasks
{
questions.map(question => (
))
}
Other
{
otherResources.map(question => (
))
}
)
}