import { Box, Heading, Link, Text, Tooltip } from '@chakra-ui/react'; import { InfoIcon } from '@chakra-ui/icons'; type RoadmapGridItemProps = { title: string; subtitle: string; isCommunity?: boolean; colorIndex?: number; url: string; }; const bgColorList = [ 'blue.900', 'red.800', 'green.800', 'teal.800', 'gray.800', 'red.900' ]; export function HomeRoadmapItem(props: RoadmapGridItemProps) { const { title, subtitle, isCommunity, colorIndex = 0, url } = props; return ( {isCommunity && ( )} {title} {subtitle} ); }