/** * ApiDocs page — embeds the FastAPI Swagger UI at /docs in an iframe. * Provides in-app access to API documentation without leaving LeoCRM. */ import React from 'react'; import { useTranslation } from 'react-i18next'; import { BookOpen, ExternalLink } from 'lucide-react'; export function ApiDocsPage() { const { t } = useTranslation(); return (