import { Box, Center, Collapse, HStack, SimpleGrid, Text, useColorModeValue as mode, } from '@chakra-ui/react' import { ChevronRightIcon } from 'assets/icons/ChevronRightIcon' import * as React from 'react' import { NextChakraLink } from '../nextChakraAdapters/NextChakraLink' import { links } from './_data' type Props = { isOpen: boolean } export const ResourcesMenu = ({ isOpen }: Props) => ( {links[0].children?.map((item, idx) => (
{item.icon}
{item.label} {item.description}
))}
)