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

{props.feature1Title}

{props.feature1Description}

) } Features17.defaultProps = { feature1Title: 'Accurate Weather Forecast', feature1Slogan: 'Stay ahead with precise weather predictions', feature1ImageSrc: 'https://images.unsplash.com/photo-1551836022-4c4c79ecde51?crop=entropy&cs=tinysrgb&fit=max&fm=jpg&ixid=M3w5MTMyMXwwfDF8cmFuZG9tfHx8fHx8fHx8MTcxNTQzMTM1OHw&ixlib=rb-4.0.3&q=80&w=1080', feature1ImageAlt: 'Accurate Weather Forecast Image', feature1Description: 'Get real-time updates on weather conditions to plan your day effectively.', } Features17.propTypes = { feature1Title: PropTypes.string, feature1Slogan: PropTypes.string, feature1ImageSrc: PropTypes.string, feature1ImageAlt: PropTypes.string, feature1Description: PropTypes.string, } export default Features17