import { BookOpen, ExternalLink } from "lucide-react"; import { __ } from "@wordpress/i18n"; import Button from "@/components/Button"; import { LINKS } from "@/lib/constants"; const { help } = window.SPCDash; const BrowseDocsCTA = () => { if (help?.popular?.length || help?.categories?.length) { return null; } return (

{__('Browse our documentation', 'wp-cloudflare-page-cache')}

{__('Setup guides, troubleshooting, and best practices live in our documentation site.', 'wp-cloudflare-page-cache')}

) } export default BrowseDocsCTA;