/** * AuthError - UI component for auth page error states * * Pure presentation component for displaying auth-related errors. * Used by page.tsx files to handle PageQuery errors. */ import { ErrorBanner } from './ErrorBanner'; interface AuthErrorProps { action: string; } export function AuthError({ action }: AuthErrorProps) { return ( ); }