Add secret management guide, client-side performance monitoring, and search accessibility enhancements

- Introduced a comprehensive Secret Management Guide detailing best practices, secret classification, development setup, production management, rotation procedures, and emergency protocols.
- Implemented a client-side performance monitoring script to track various metrics including page load performance, paint metrics, layout shifts, and memory usage.
- Enhanced search accessibility with keyboard navigation support for search results, ensuring compliance with WCAG standards and improving user experience.
This commit is contained in:
pacnpal
2025-12-23 16:41:42 -05:00
parent ae31e889d7
commit edcd8f2076
155 changed files with 22046 additions and 4645 deletions

View File

@@ -97,13 +97,14 @@ Accessibility:
{# Mobile ellipsis for long breadcrumb trails #}
{% if forloop.counter == 1 and items|length > max_visible %}
<li class="flex items-center sm:hidden" aria-hidden="true">
<span class="mx-2 text-muted-foreground/50">
<li class="flex items-center sm:hidden" aria-label="Additional navigation items hidden on mobile">
<span class="mx-2 text-muted-foreground/50" aria-hidden="true">
<svg class="w-4 h-4" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M9 5l7 7-7 7"/>
</svg>
</span>
<span class="text-muted-foreground">...</span>
<span class="text-muted-foreground" aria-hidden="true">...</span>
<span class="sr-only">{{ items|length|add:'-2' }} items hidden</span>
</li>
{% endif %}
{% endfor %}