import { Flex, LinkBox, LinkOverlay, Text } from '@chakra-ui/react' import NextImage from 'next/image' import NextLink from 'next/link' type Props = { url: string title: string slug: string } export function ComponentOverviewItem(props: Props) { const { url, title, slug } = props const imageUrl = `/components/${slug}.svg` return ( {title} ) }