import { Badge } from "@openstatus/ui/components/ui/badge"; import { Button } from "@openstatus/ui/components/ui/button"; import { Section, SectionDescription, SectionHeader, SectionTitle, } from "@/components/content/section"; const SUGGESTIONS = [ "List all my monitors", "Are any status reports unresolved?", "Draft a status report", "Schedule a maintenance window", ]; type Props = { onSelect: (text: string) => void; }; export function ChatSuggestions({ onSelect }: Props) { return (
openstatus assistant Ask about your workspace, draft status reports, or debug your failing monitors.{" "} Test it out and share your feedback. {" "} BETA
{SUGGESTIONS.map((s) => ( ))}
); }