HEX
Server: LiteSpeed
System: Linux server342.web-hosting.com 4.18.0-553.124.4.lve.el8.x86_64 #1 SMP Fri May 15 13:02:13 UTC 2026 x86_64
User: ksonpoau (1099)
PHP: 8.2.31
Disabled: NONE
Upload Files
File: //home/ksonpoau/www/wp-content/plugins/extendify/src/Agent/workflows/theme/components/Redirect.jsx
import { __ } from '@wordpress/i18n';

export const Redirect = (message) => {
	return (
		<div className="mb-4 ml-10 mr-2 flex flex-col rounded-lg border border-gray-300 bg-gray-50 rtl:ml-2 rtl:mr-10">
			<div className="rounded-lg border-b border-gray-300 bg-white p-3">
				<p className="m-0 p-0 text-sm text-gray-900">{message}</p>
			</div>
			<div className="m-0 p-3 text-sm text-gray-900">
				{__('Suggestion:', 'extendify-local')}{' '}
				<a href={`${window.extSharedData.homeUrl}`}>
					{__('Home page', 'extendify-local')}
				</a>
			</div>
		</div>
	);
};