diff --git a/.github/CODEOWNERS b/.github/CODEOWNERS index e4dcd13455d9..11ff61045388 100644 --- a/.github/CODEOWNERS +++ b/.github/CODEOWNERS @@ -1,14 +1,13 @@ -# Order is important. The LAST matching pattern has the MOST precedence. -# gitignore style patterns are used, not globs. -# https://docs.github.com/articles/about-codeowners -# https://git-scm.com/docs/gitignore - -# Site Policy -content/site-policy/ @github/site-policy-admins - -# Enterprise -data/release-notes/**/*.yml @github/docs-content-enterprise -src/ghes-releases/lib/enterprise-dates.json @github/docs-content-enterprise - -# Requires review of #actions-oidc-integration, docs-engineering/issues/1506 -# content/actions/deployment/security-hardening-your-deployments/** @github/oidc +// Add interactivity here +document.addEventListener('DOMContentLoaded', function() { + console.log('Betting Effects Edu website loaded'); + + // Add click event to CTA button + const ctaBtn = document.querySelector('.cta-btn'); + if (ctaBtn) { + ctaBtn.addEventListener('click', function() { + console.log('Learn More clicked'); + // You can add navigation or modal here + }); + } +});