chore: use Chakra Image

This commit is contained in:
Nicolás Quiroz 2023-02-13 20:21:41 -03:00
parent dc6680f12f
commit b5e8e6365f

View file

@ -2,6 +2,7 @@ import {
Box, Box,
Flex, Flex,
Heading, Heading,
Image,
Link, Link,
ListItem, ListItem,
OrderedList, OrderedList,
@ -11,7 +12,6 @@ import {
UnorderedList UnorderedList
} from '@chakra-ui/react'; } from '@chakra-ui/react';
import NextLink from 'next/link'; import NextLink from 'next/link';
import Image from 'next/image';
import { Code, Note } from '.'; import { Code, Note } from '.';
import { textStyles } from '../../../theme/foundations'; import { textStyles } from '../../../theme/foundations';
@ -30,17 +30,8 @@ const MDComponents = {
return ( return (
<Link href={src} isExternal> <Link href={src} isExternal>
<Box position='relative' mb={7}> <Box mb={7}>
<Image <Image alt={alt} src={src} />
alt={alt}
src={src}
width={700}
height={475}
style={{
width: '100%',
height: 'auto'
}}
/>
</Box> </Box>
</Link> </Link>
); );