HEX
Server: LiteSpeed
System: Linux server902.web-hosting.com 4.18.0-553.54.1.lve.el8.x86_64 #1 SMP Wed Jun 4 13:01:13 UTC 2025 x86_64
User: deshuvsd (2181)
PHP: 8.1.33
Disabled: NONE
Upload Files
File: /home/deshuvsd/www/wp-content/plugins/surerank/src/apps/seo-popup/modal/tabs.js
import { __ } from '@wordpress/i18n';
import { applyFilters } from '@wordpress/hooks';
import { TrendingUp, BarChart2 } from 'lucide-react';
import { Analyze, MetaSettings } from '@SeoPopup/components';
import { isSeoAnalysisDisabled } from '@SeoPopup/components/page-seo-checks/analyzer/utils/page-builder';

export const TABS = applyFilters( 'surerank-pro.seo-popup-tabs', {
	optimize: {
		title: __( 'Optimize', 'surerank' ),
		component: MetaSettings,
		label: __( 'Optimize', 'surerank' ),
		icon: <TrendingUp />,
		slug: 'optimize',
	},
	// Conditionally add the Analyze tab
	...( isSeoAnalysisDisabled()
		? {}
		: {
				analyze: {
					title: __( 'Analyze', 'surerank' ),
					component: Analyze,
					label: __( 'Analyze', 'surerank' ),
					slug: 'analyze',
					icon: <BarChart2 />,
					className: 'relative surerank-page-checks-indicator',
				},
		  } ),
} );