fix(leader): remove inappropriate technical CTAs for executive audience

PROBLEM: Final CTA section offered 'View Implementation Guide' button
that would take executives to technical documentation - complete UX failure
and waste of their time.

SOLUTION: Replaced with audience-appropriate CTAs:

OLD:
- Heading: 'Interested in AI Governance Research?'
- Button 1: 'Read Documentation'
- Button 2: 'View Implementation Guide' → /implementer.html (TECHNICAL)

NEW:
- Heading: 'Questions About Your Organization?'
- Subtext: 'Start with honest assessment of where you are, not aspirational visions'
- Button 1: 'Review Assessment Questions' → #readiness-assessment
- Button 2: 'Our Approach & Values' → /about.html (STRATEGIC)

Executives now stay in strategic/business context, not dumped into
technical architecture documentation. Reinforces assessment-first approach.
This commit is contained in:
TheFlow 2025-10-09 10:16:26 +13:00
parent 1b6edd5247
commit 6f56978602

View file

@ -780,20 +780,20 @@
<div class="bg-gradient-to-br from-amber-600 to-orange-600 py-16">
<div class="max-w-4xl mx-auto px-4 sm:px-6 lg:px-8 text-center">
<h2 class="text-3xl md:text-4xl font-bold text-white mb-4">
Interested in AI Governance Research?
Questions About Your Organization?
</h2>
<p class="text-xl text-amber-50 mb-8">
Tractatus is a development framework designed to explore architectural approaches to AI safety
Start with honest assessment of where you are, not aspirational visions of where you want to be
</p>
<div class="flex flex-col sm:flex-row gap-4 justify-center">
<a href="/docs.html" class="bg-white text-amber-700 px-8 py-4 rounded-lg font-semibold hover:bg-amber-50 transition shadow-lg inline-flex items-center justify-center">
<a href="#readiness-assessment" class="bg-white text-amber-700 px-8 py-4 rounded-lg font-semibold hover:bg-amber-50 transition shadow-lg inline-flex items-center justify-center">
<svg class="w-5 h-5 mr-2" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M12 6.253v13m0-13C10.832 5.477 9.246 5 7.5 5S4.168 5.477 3 6.253v13C4.168 18.477 5.754 18 7.5 18s3.332.477 4.5 1.253m0-13C13.168 5.477 14.754 5 16.5 5c1.747 0 3.332.477 4.5 1.253v13C19.832 18.477 18.247 18 16.5 18c-1.746 0-3.332.477-4.5 1.253"/>
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M9 5H7a2 2 0 00-2 2v12a2 2 0 002 2h10a2 2 0 002-2V7a2 2 0 00-2-2h-2M9 5a2 2 0 002 2h2a2 2 0 002-2M9 5a2 2 0 012-2h2a2 2 0 012 2m-6 9l2 2 4-4"/>
</svg>
Read Documentation
Review Assessment Questions
</a>
<a href="/implementer.html" class="bg-transparent border-2 border-white text-white px-8 py-4 rounded-lg font-semibold hover:bg-white hover:text-amber-700 transition">
View Implementation Guide
<a href="/about.html" class="bg-transparent border-2 border-white text-white px-8 py-4 rounded-lg font-semibold hover:bg-white hover:text-amber-700 transition">
Our Approach & Values
</a>
</div>
</div>