import { useState } from 'react' import { Icon } from '../ui/primitives' import { useToast } from '../ui/Toast' const FAQS = [ { q: 'How do I create a new job requisition?', a: 'Navigate to Jobs and click "Create Job". Fill in the required fields marked with an asterisk and click Save. The job will immediately appear in your listings.' }, { q: 'How does the AI candidate score work?', a: 'The AI score (0–100) evaluates how well a candidate matches the job requirements based on skills, experience, and education. Higher scores indicate stronger matches.' }, { q: 'Can I move candidates between pipeline stages?', a: 'Yes. Open the Pipeline view and simply drag any candidate card between stage columns. The candidate’s status updates automatically.' }, { q: 'How do I schedule an interview?', a: 'Go to Interviews or Calendar and click "Schedule Interview". Select the candidate, round, date, time, and interviewers.' }, { q: 'How do I export reports?', a: 'On the Reports page, use the "Export Report" button for a full PDF, or the CSV buttons on individual tables.' }, ] const RESOURCES = [ { icn: 'file', t: 'Documentation', d: 'Complete product guides', cls: 'i-indigo' }, { icn: 'video', t: 'Video Tutorials', d: 'Watch step-by-step walkthroughs', cls: 'i-red' }, { icn: 'message', t: 'Live Chat', d: 'Chat with our support team', cls: 'i-green' }, { icn: 'users', t: 'Community', d: 'Connect with other recruiters', cls: 'i-purple' }, ] export default function Help() { const { toast } = useToast() const [open, setOpen] = useState(null) return (
Find answers and get support
Search our knowledge base or browse the topics below
{f.a}
}