6a4fc86387
Semantic HTML:
- Changed Card component from div to article element
- Added id="main-content" to main element for skip link target
Keyboard Navigation & ARIA:
- Added skip link to TopBar (visible only on focus, navigates to #main-content)
- Added aria-label="Active session information" to session info container
- Added aria-hidden="true" to all decorative colored dots (CardHeader, CareerActivity, Projects, Sidebar status badge)
- All expandable items already have role="button", tabIndex={0}, aria-expanded
- All KPI cards already have proper aria-label describing flip state
- Command palette already has full ARIA implementation (combobox, listbox, dialog)
Focus Management:
- Added global focus-visible styles in index.css (2px accent outline, 2px offset)
- Buttons, links, inputs all have proper focus rings with accent color
- Command palette focus trap already implemented
Reduced Motion:
- All components already check prefers-reduced-motion at module scope
- Dashboard entrance, tile expansion, KPI flip, palette animations respect reduced motion
- Added reduced motion override for pulse animation (disables pulse, keeps static dot)
Color Contrast:
- All color tokens already meet WCAG AA standards per ref spec
- Tertiary text (#8DA8A5) used only for supplementary labels where information is conveyed elsewhere
Quality checks: typecheck ✓, lint ✓ (1 pre-existing warning), build ✓
94 lines
2.3 KiB
TypeScript
94 lines
2.3 KiB
TypeScript
import React from 'react'
|
|
|
|
interface CardProps {
|
|
children: React.ReactNode
|
|
full?: boolean // spans both grid columns
|
|
className?: string
|
|
tileId?: string // data-tile-id for command palette scroll targeting
|
|
}
|
|
|
|
export function Card({ children, full, className, tileId }: CardProps) {
|
|
const [isHovered, setIsHovered] = React.useState(false)
|
|
|
|
const baseStyles: React.CSSProperties = {
|
|
background: 'var(--surface)',
|
|
border: isHovered
|
|
? '1px solid var(--border)'
|
|
: '1px solid var(--border-light)',
|
|
borderRadius: 'var(--radius)',
|
|
padding: '20px',
|
|
boxShadow: isHovered ? 'var(--shadow-md)' : 'var(--shadow-sm)',
|
|
transition: 'box-shadow 0.2s, border-color 0.2s',
|
|
gridColumn: full ? '1 / -1' : undefined,
|
|
}
|
|
|
|
return (
|
|
<article
|
|
style={baseStyles}
|
|
className={className}
|
|
data-tile-id={tileId}
|
|
onMouseEnter={() => setIsHovered(true)}
|
|
onMouseLeave={() => setIsHovered(false)}
|
|
>
|
|
{children}
|
|
</article>
|
|
)
|
|
}
|
|
|
|
interface CardHeaderProps {
|
|
dotColor: 'teal' | 'amber' | 'green' | 'alert' | 'purple'
|
|
title: string
|
|
rightText?: string
|
|
}
|
|
|
|
const dotColorMap: Record<CardHeaderProps['dotColor'], string> = {
|
|
teal: '#0D6E6E',
|
|
amber: '#D97706',
|
|
green: '#059669',
|
|
alert: '#DC2626',
|
|
purple: '#7C3AED',
|
|
}
|
|
|
|
export function CardHeader({ dotColor, title, rightText }: CardHeaderProps) {
|
|
const headerStyles: React.CSSProperties = {
|
|
display: 'flex',
|
|
alignItems: 'center',
|
|
gap: '8px',
|
|
marginBottom: '16px',
|
|
}
|
|
|
|
const dotStyles: React.CSSProperties = {
|
|
width: '8px',
|
|
height: '8px',
|
|
borderRadius: '50%',
|
|
backgroundColor: dotColorMap[dotColor],
|
|
flexShrink: 0,
|
|
}
|
|
|
|
const titleStyles: React.CSSProperties = {
|
|
fontSize: '12px',
|
|
fontWeight: 600,
|
|
textTransform: 'uppercase',
|
|
letterSpacing: '0.06em',
|
|
color: 'var(--text-secondary)',
|
|
}
|
|
|
|
const rightTextStyles: React.CSSProperties = {
|
|
fontSize: '10px',
|
|
fontWeight: 400,
|
|
textTransform: 'none',
|
|
letterSpacing: 'normal',
|
|
color: 'var(--text-tertiary)',
|
|
fontFamily: "'Geist Mono', monospace",
|
|
marginLeft: 'auto',
|
|
}
|
|
|
|
return (
|
|
<div style={headerStyles}>
|
|
<div style={dotStyles} aria-hidden="true" />
|
|
<span style={titleStyles}>{title}</span>
|
|
{rightText && <span style={rightTextStyles}>{rightText}</span>}
|
|
</div>
|
|
)
|
|
}
|