FileMaster
Search
Toggle Dark Mode
Home
/
.
/
wp-content
/
plugins
/
surerank
/
src
/
apps
/
admin-dashboard
/
instant-indexing
Edit File: settings.js
import PageContentWrapper from '@/apps/admin-components/page-content-wrapper'; import { UpgradeNotice } from '@/global/components/nudges'; import { __ } from '@wordpress/i18n'; /** * Instant Indexing Settings - Pro Feature Placeholder * Displays upgrade nudge for the Instant Indexing Settings feature */ const InstantIndexingSettings = () => { return ( <PageContentWrapper title={ __( 'Instant Indexing', 'surerank' ) } description={ __( 'Automatically notify search engines like Bing and Yandex when your content is published. Improve indexing speed and ensure your latest content appears in search results faster with IndexNow integration.', 'surerank' ) } > <UpgradeNotice title={ __( 'Get Your Content Indexed Instantly with IndexNow', 'surerank' ) } description={ __( 'Upgrade to SureRank Pro to notify search engines like Bing and Yandex the moment you publish or update content. No more waiting for crawlers—get indexed faster and boost your search visibility.', 'surerank' ) } utmMedium="surerank_instant_indexing" /> </PageContentWrapper> ); }; export default InstantIndexingSettings;
Save
Back