fix(navigation): correct researcher collaboration contact link

Fixed two navigation issues:

1. Changed broken /contact.html link to proper email address
   (mailto:research@agenticgovernance.digital)

2. Moved i18n attributes from <a> tags to <span> wrappers
   to prevent i18n system from replacing entire link elements

Navigation now works correctly for research collaboration contact.

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

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
TheFlow 2025-10-30 23:28:45 +13:00
parent a85505bc4f
commit 759467e224

View file

@ -191,11 +191,11 @@
<strong>Collaborate with us:</strong> We welcome researchers interested in studying this application of architectural principles to AI governance. We can provide audit log access, framework code, and integration documentation for empirical study.
</p>
<div class="flex flex-wrap gap-3">
<a href="/contact.html" class="inline-block bg-blue-600 text-white px-4 py-2 rounded-lg font-semibold hover:bg-blue-700 transition text-sm" data-i18n="alexander_research.contact_link">
Contact for Collaboration →
<a href="mailto:research@agenticgovernance.digital" class="inline-block bg-blue-600 text-white px-4 py-2 rounded-lg font-semibold hover:bg-blue-700 transition text-sm">
<span data-i18n="alexander_research.contact_link">Contact for Collaboration →</span>
</a>
<a href="/values.html" class="inline-block bg-gray-200 text-gray-900 px-4 py-2 rounded-lg font-semibold hover:bg-gray-300 transition text-sm" data-i18n="alexander_research.values_link">
Values & Principles →
<a href="/values.html" class="inline-block bg-gray-200 text-gray-900 px-4 py-2 rounded-lg font-semibold hover:bg-gray-300 transition text-sm">
<span data-i18n="alexander_research.values_link">Values & Principles →</span>
</a>
</div>
</div>