/* eslint-disable jsx-a11y/alt-text */ import { Box } from "@chakra-ui/react" import Image, { type ImageProps } from "next/image" export const Img = (props: ImageProps) => { const { height, ...rest } = props return ( ) }