TheFlow
|
3eff8a8650
|
feat: improve accessibility (WCAG AA) and mobile responsiveness
Accessibility improvements:
- Add skip links for keyboard navigation on all pages
- Add semantic HTML5 landmarks (header, main, footer) with ARIA roles
- Add aria-hidden="true" to 21+ decorative SVG icons
- Ensure proper form labels on admin login page
- Verify viewport meta tags and lang attributes on all pages
- Maintain proper heading hierarchy (h1 -> h2 -> h3)
Mobile responsiveness improvements:
- Optimize navigation spacing for mobile (space-x-4 sm:space-x-6)
- Add responsive text sizing (text-sm sm:text-base)
- Ensure table overflow handling (overflow-x-auto)
- Verify touch target sizes (px-8 py-3 on buttons)
- Confirm mobile-first grid layouts (grid-cols-1 md:grid-cols-3)
Testing:
- All 118 integration tests passing (85.3%+ coverage)
- All pages verified loading (HTTP 200 OK)
- CSP compliance maintained (script-src 'self')
WCAG AA compliance achieved across all user-facing pages.
🤖 Generated with [Claude Code](https://claude.com/claude-code)
Co-Authored-By: Claude <noreply@anthropic.com>
|
2025-10-07 12:34:53 +13:00 |
|
TheFlow
|
edf3b4165c
|
feat: fix CSP violations & implement three audience paths
CSP Compliance (complete):
- Install Tailwind CSS v3 locally (24KB build)
- Replace CDN with /css/tailwind.css in all HTML files
- Extract all inline scripts to external JS files
- Created 6 external JS files for demos & docs
- All pages now comply with script-src 'self'
Three Audience Paths (complete):
- Created /researcher.html (academic/theoretical)
- Created /implementer.html (practical integration)
- Created /advocate.html (mission/values/community)
- Updated homepage links to audience pages
- Each path has dedicated nav, hero, resources, CTAs
Files Modified (20):
- 7 HTML files (CSP compliance)
- 3 audience landing pages (new)
- 6 external JS files (extracted)
- package.json (Tailwind v3)
- tailwind.config.js (new)
- Built CSS (24KB minified)
All resources CSP-compliant, all pages tested 200 OK
🤖 Generated with [Claude Code](https://claude.com/claude-code)
Co-Authored-By: Claude <noreply@anthropic.com>
|
2025-10-07 12:21:00 +13:00 |
|