import { CircleHelp } from "lucide-react"; import { __ } from "@wordpress/i18n"; import { useAppStore } from "@/store/store"; const Hero = () => { const { validPro } = useAppStore(); const byline = validPro ? __('Find answers in our documentation or get direct support', 'wp-cloudflare-page-cache') : __('Find answers in our documentation or get help from the WordPress.org community', 'wp-cloudflare-page-cache'); return (

{__('How can we help you?', 'wp-cloudflare-page-cache')}

{byline}

) } export default Hero;