Devendra174's picture
Upload folder using huggingface_hub
f5071ca verified
raw
history blame contribute delete
429 Bytes
export default function ContactImg() {
return (
<section className="lg:absolute lg:inset-y-0 lg:right-0 lg:w-1/2">
<img
className="h-56 w-full object-cover lg:absolute lg:h-full object-center"
src="https://images.unsplash.com/photo-1497215641119-bbe6d71ebaae?ixlib=rb-1.2.1&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=774&q=80"
alt=""
/>
</section>
)
}