import React from 'react'; import s from './Author.module.scss'; import classNames from 'classnames'; import Image from "next/image"; interface Props { image:StaticImageData, name: string } const Author = ({image,name}:Props) =>{ return (
{name}
) } export default Author;