fix: correct GitHub link and replace broken collaboration button

Fixed issues on Agent Lightning integration page:
- Changed GitHub link from non-existent tractatus-ai/agent-lightning-integration
  to existing tractatus-framework/tractatus-framework repo
- Replaced unresponsive "Contact for Collaboration" button with email display
  (research@agenticgovernance.digital)
- Removed broken click handler script that ran before feedback component loaded

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
TheFlow 2025-11-03 16:16:03 +13:00
parent 8f2bfc08fd
commit 4b4be5cb0b

View file

@ -296,9 +296,9 @@
</div>
<div class="bg-white rounded-lg p-6 border-2 border-purple-300 shadow-md">
<h3 class="text-xl font-bold text-gray-900 mb-4">📦 View Integration Code</h3>
<p class="text-gray-700 mb-4">Complete integration including demos, Python governance modules, and Agent Lightning wrapper code. Apache 2.0 licensed on GitHub.</p>
<a href="https://github.com/tractatus-ai/agent-lightning-integration" target="_blank" rel="noopener noreferrer" class="inline-block bg-purple-600 text-white font-bold px-6 py-3 rounded-lg hover:bg-purple-700 transition shadow-md">View on GitHub (Apache 2.0) →</a>
<h3 class="text-xl font-bold text-gray-900 mb-4">📦 Tractatus Framework</h3>
<p class="text-gray-700 mb-4">Governance architecture and framework components. Apache 2.0 licensed on GitHub.</p>
<a href="https://github.com/tractatus-framework/tractatus-framework" target="_blank" rel="noopener noreferrer" class="inline-block bg-purple-600 text-white font-bold px-6 py-3 rounded-lg hover:bg-purple-700 transition shadow-md">View on GitHub (Apache 2.0) →</a>
</div>
</section>
@ -313,7 +313,7 @@
<li class="flex items-center">✓ Audit log access (anonymized)</li>
</ul>
<div class="flex flex-wrap gap-4">
<button id="collaboration-inquiry-button" class="bg-purple-600 text-white font-bold px-8 py-4 rounded-lg hover:bg-purple-700 transition shadow-lg" data-i18n="cta.button_collab">Contact for Collaboration →</button>
<div class="bg-white/20 backdrop-blur border-2 border-white/40 rounded-lg px-6 py-4"><p class="text-white text-sm mb-1 font-semibold">Research Collaboration Inquiries:</p><a href="mailto:research@agenticgovernance.digital" class="text-white text-lg font-bold hover:text-blue-200 transition">research@agenticgovernance.digital</a></div>
<a href="/researcher.html" class="bg-white text-gray-900 font-bold px-8 py-4 rounded-lg hover:bg-gray-100 transition shadow-lg">View Research Context →</a>
</div>
</section>
@ -329,20 +329,6 @@
<script src="/js/components/navbar.js?v=0.1.2.1762133909969"></script>
<script src="/js/components/footer.js?v=0.1.2.1762133909969"></script>
<script src="/js/components/feedback.js?v=0.1.2.1762133909969"></script>
<script>
const button = document.getElementById('collaboration-inquiry-button');
if (button) {
button.addEventListener('click', function() {
// Open feedback modal by triggering click on FAB
const fab = document.getElementById('feedback-fab');
if (fab) {
fab.click();
} else {
console.error('[AL Page] Feedback FAB not found');
}
});
}
</script>
</script>
</body>
</html>