- about.php: title, subtitle, bio, technical background - quote.php: title, meta, badge (10+ Years Python → 10+ Years Experience) - case-studies/index.php: pipeline descriptions - author-bio.php: fake author roles and bios - article-footer.php: replace Python article links with actual AI articles - blog/search.php: replace Python article, remove Python topic tag
8 lines
268 B
PHP
8 lines
268 B
PHP
<?php
|
|
// Google reCAPTCHA v3 Configuration
|
|
define('RECAPTCHA_SITE_KEY', '6Ldp74UsAAAAAIeXNHbdaKPw-aIErV7ZznKQZ4fh');
|
|
define('RECAPTCHA_SECRET_KEY', '6Ldp74UsAAAAABQLNZkuLwUYMNSf9aSuFrdaoLfZ');
|
|
define('RECAPTCHA_THRESHOLD', 0.5);
|
|
define('RECAPTCHA_ENABLED', false);
|
|
?>
|