Devendra174's picture
Upload folder using huggingface_hub
f5071ca verified
raw
history blame contribute delete
671 Bytes
import React from 'react';
import PropTypes from 'prop-types';
import './HeroImage.css';
const HeroImage = ({ image, title, text }) => (
<div className="rmdb-heroimage"
style={{
background:
`linear-gradient(to bottom, rgba(0,0,0,0)
39%,rgba(0,0,0,0)
41%,rgba(0,0,0,0.65)
100%),
url('${image}'), #1c1c1c`
}}
>
<div className="rmdb-heroimage-content">
<div className="rmdb-heroimage-text">
<h1>{title}</h1>
<p>{text}</p>
</div>
</div>
</div>
)
HeroImage.propTypes = {
image: PropTypes.string,
title: PropTypes.string,
text: PropTypes.string
}
export default HeroImage;