'use client'; import { Stack } from '@/ui/primitives/Stack'; import { Text } from '@/ui/Text'; interface NotFoundDiagnosticsProps { errorCode: string; } /** * NotFoundDiagnostics * * Semantic component for displaying technical error details. * Styled as a telemetry status indicator. */ export function NotFoundDiagnostics({ errorCode }: NotFoundDiagnosticsProps) { return ( {errorCode} Telemetry connection lost // Sector data unavailable ); }