'use client'; import React from 'react'; import { Stack } from '@/ui/Stack'; import { Text } from '@/ui/Text'; import { Box } from '@/ui/Box'; 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 ); }