You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
470 B
JavaScript
13 lines
470 B
JavaScript
import React from 'react'
|
|
import { GatsbyImage, getImage } from 'gatsby-plugin-image';
|
|
|
|
|
|
const Review = ({ img, ...props }) => {
|
|
return (
|
|
<div className="h-full border-2 rounded-md p-5 border-[#0E0808] relative flex justify-center cursor-pointer" {...props}>
|
|
<GatsbyImage className='rounded-lg mb-2' loading='lazy' imgClassName="!object-contain" image={getImage(img)} alt="logo" placeholder="none"/>
|
|
</div>
|
|
)
|
|
}
|
|
|
|
export default Review; |