import { Badge, Box, Heading, Link, Text } from '@chakra-ui/react'; type GuideGridItemProps = { title: string; subtitle: string; date: string; isNew?: boolean; colorIndex?: number; }; const bgColorList = [ 'gray.700', 'purple.800' ]; export function GuideGridItem(props: GuideGridItemProps) { const { title, subtitle, date, isNew = false, colorIndex = 0 } = props; return ( {isNew && New} {date} {title} {subtitle} ); }