import { Badge, Box, Button, Container, Link, Stack, Text } from '@chakra-ui/react'; import { RoadmapType } from '../lib/roadmap'; type RelatedRoadmapsProps = { roadmaps: RoadmapType[]; }; export function RelatedRoadmaps(props: RelatedRoadmapsProps) { const { roadmaps } = props; if (!roadmaps.length) { return null; } return ( Other Related Roadmaps { roadmaps.map(roadmap => ( { roadmap.featuredTitle } { roadmap.featuredDescription } ))} ); }