fix: correct broken navigation links on researcher page
**Issues Fixed:** 1. "Read Technical Papers" button now says "Browse Documentation" (accurate since it goes to docs landing page, not a specific paper) 2. "Read full analysis" links were pointing to non-existent anchors: - /docs.html#27027-incident (404) - /docs.html#privacy-creep (404) - /docs.html#silent-degradation (404) **Changes:** - 27027 case study: Now links to /demos/27027-demo.html (interactive demo) - Other case studies: Link to /docs.html with text "See case studies doc" - Hero button: Text changed to "Browse Documentation" (clearer intent) **Note:** docs.html doesn't support URL hash anchors yet. Future enhancement: Add ?doc=slug parameter support to docs viewer. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
parent
8ec1ad73a6
commit
20be22c759
1 changed files with 4 additions and 4 deletions
|
|
@ -41,7 +41,7 @@
|
|||
</p>
|
||||
<div class="flex justify-center space-x-4">
|
||||
<a href="/docs.html" class="bg-purple-600 text-white px-6 py-3 rounded-lg font-semibold hover:bg-purple-700 transition">
|
||||
Read Technical Papers
|
||||
Browse Documentation
|
||||
</a>
|
||||
<a href="#case-studies" class="bg-white text-purple-600 px-6 py-3 rounded-lg font-semibold border-2 border-purple-600 hover:bg-purple-50 transition">
|
||||
View Case Studies
|
||||
|
|
@ -197,7 +197,7 @@
|
|||
<span class="text-gray-500">Prevention: HIGH persistence validation</span>
|
||||
</div>
|
||||
</div>
|
||||
<a href="/docs.html#27027-incident" class="text-purple-600 hover:text-purple-700 font-medium">Read full analysis →</a>
|
||||
<a href="/demos/27027-demo.html" class="text-purple-600 hover:text-purple-700 font-medium">Interactive demo →</a>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
|
@ -213,7 +213,7 @@
|
|||
<span class="text-gray-500">Prevention: STRATEGIC boundary check</span>
|
||||
</div>
|
||||
</div>
|
||||
<a href="/docs.html#privacy-creep" class="text-purple-600 hover:text-purple-700 font-medium">Read full analysis →</a>
|
||||
<a href="/docs.html" class="text-purple-600 hover:text-purple-700 font-medium">See case studies doc →</a>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
|
@ -229,7 +229,7 @@
|
|||
<span class="text-gray-500">Prevention: CRITICAL pressure detection</span>
|
||||
</div>
|
||||
</div>
|
||||
<a href="/docs.html#silent-degradation" class="text-purple-600 hover:text-purple-700 font-medium">Read full analysis →</a>
|
||||
<a href="/docs.html" class="text-purple-600 hover:text-purple-700 font-medium">See case studies doc →</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue