import { Button, Card, Col, Divider, Result, Row } from 'antd';
import Meta from 'antd/lib/card/Meta';
import Title from 'antd/lib/typography/Title';
import {
  ApiTwoTone,
  BugTwoTone,
  CameraTwoTone,
  DatabaseTwoTone,
  EditTwoTone,
  Html5TwoTone,
  LinkOutlined,
  QuestionCircleTwoTone,
  SettingTwoTone,
  SlidersTwoTone,
} from '@ant-design/icons';
import React from 'react';
export default function Help() {
  const questions = [
    {
      icon: ,
      title: 'I want to configure my owncast instance',
      content: (
        
      ),
    },
    {
      icon: ,
      title: '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 video output',
      content: (
        
      ),
    },
    {
      icon: ,
      title: 'I want to use an external storage provider',
      content: (
        
      ),
    },
  ];
  const otherResources = [
    {
      icon: ,
      title: 'I found a bug',
      content: (
        
      ),
    },
    {
      icon: ,
      title: 'I have a general question',
      content: (
        
      ),
    },
    {
      icon: ,
      title: 'I want to build add-ons for Owncast',
      content: (
        
          You can build your own bots, overlays, tools and add-ons with our
          
             developer APIs. 
          
         
      ),
    },
  ];
  return (
    
      How can we help you?
      
        
          
          Troubleshooting
          }
            type="primary"
          >
            Fix your problems
          
        
        
          
          Documentation
          }
            type="primary"
          >
            Read the Docs
          
        
      
      
      Common tasks
      
        {questions.map(question => (
          
            
              
            
          
        ))}
      
      
      Other
      
        {otherResources.map(question => (
          
            
              
            
          
        ))}
      
     
  );
}