import React from 'react' import PropTypes from 'prop-types' import './features171.css' const Features171 = (props) => { return (
{props.feature1ImageAlt}
{props.feature1Slogan}

{props.feature1Title}

{props.feature1Description}

) } Features171.defaultProps = { feature1Title: 'Accurate Weather Data', feature1Slogan: 'Stay informed with precise weather information', feature1ImageSrc: 'https://images.unsplash.com/photo-1591804227855-d6fe0b648d0e?crop=entropy&cs=tinysrgb&fit=max&fm=jpg&ixid=M3w5MTMyMXwwfDF8cmFuZG9tfHx8fHx8fHx8MTcxNTQzMTM1OHw&ixlib=rb-4.0.3&q=80&w=1080', feature1ImageAlt: 'Accurate Weather Data Image', feature1Description: 'Get real-time updates on temperature, humidity, wind speed, and more for any location worldwide.', } Features171.propTypes = { feature1Title: PropTypes.string, feature1Slogan: PropTypes.string, feature1ImageSrc: PropTypes.string, feature1ImageAlt: PropTypes.string, feature1Description: PropTypes.string, } export default Features171