import { RoadmapType } from '../../lib/roadmap'; import { Container, Heading, Link, Text } from '@chakra-ui/react'; import siteConfig from '../../content/site.json'; type RoadmapProps = { roadmap: RoadmapType; }; export function RoadmapError(props: RoadmapProps) { const { roadmap } = props; return ( Oops! There's an error Try refreshing or report a bug and use the non-interactive version ); }