import { Box, SimpleGrid, Text } from '@chakra-ui/react' import NextImage from 'next/image' const CourseBanner = ({ href, image, title, }: { image: string title: string description: string href: string }) => { return ( {title} ) } export const FeaturesCourses = () => { return ( ) } export default CourseBanner