GhostManSec
Server: Apache
System: Linux webm019.cluster130.gra.hosting.ovh.net 6.18.42-ovh-vps-grsec-zfs+ #1 SMP PREEMPT_DYNAMIC Wed Aug 5 15:59:48 CEST 2026 x86_64
User: exhehbu (1008962)
PHP: 8.0.30
Disabled: _dyuweyrj4,_dyuweyrj4r,dl
Upload Files
File: /home/exhehbu/www/wp-content/plugins/complianz-gdpr/settings/src/Dashboard/TipsTricks/TipsTricks.js
const Tip = ({link, content}) => {
    return (
        <div className="cmplz-tips-tricks-element">
			<a href={link} target="_blank" rel="noopener noreferrer" title="{content}">
                <div className="cmplz-icon">
                    <svg aria-hidden="true" focusable="false" role="img" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512" height="15">
                        <path fill="var(--rsp-grey-300)" d="M256 512c141.4 0 256-114.6 256-256S397.4 0 256 0S0 114.6 0 256S114.6 512 256 512zM216 336h24V272H216c-13.3 0-24-10.7-24-24s10.7-24 24-24h48c13.3 0 24 10.7 24 24v88h8c13.3 0 24 10.7 24 24s-10.7 24-24 24H216c-13.3 0-24-10.7-24-24s10.7-24 24-24zm40-144c-17.7 0-32-14.3-32-32s14.3-32 32-32s32 14.3 32 32s-14.3 32-32 32z"/>
                    </svg>
                </div>
                <div className="cmplz-tips-tricks-content">{content}</div>
            </a>
        </div>
    )
}
const TipsTricks = () => {
	const items = [
		{
			content: "Styling your cookie notice and legal documents",
			link: 'https://complianz.io/docs/customization/',
		},
		{
			content: "Why plugins are better in consent management",
			link: 'https://complianz.io/consent-management-wordpress-native-plugin-versus-cloud-solution/',
		},
		{
			content: "Configure Tag Manager with Complianz",
			link: 'https://complianz.io/definitive-guide-to-tag-manager-and-complianz/',
		},
		{
			content: "Self-hosting Google Fonts",
			link: 'https://complianz.io/self-hosting-google-fonts-for-wordpress/',
		},
		{
			content: "Translating your cookie notice and legal documents",
			link: 'https://complianz.io/?s=translations&lang=en',
		},
		{
			content: "Debugging issues with Complianz",
			link: 'https://complianz.io/debugging-issues/',
		}
	];


    return (
        <div className="cmplz-tips-tricks-container">
            {items.map((item, i) => <Tip key={"trick-"+i} link={item.link} content={item.content} /> ) }
        </div>
    );

}
export default TipsTricks