import React from "react"; import PropTypes from "prop-types"; import "./features_about2.css"; const Features17 = (props) => { return (
{props.feature1Slogan}

{props.feature1Title}

{props.feature1Description}

{props.feature1ImageAlt}
); }; Features17.defaultProps = { feature1Title: "Information about the project", feature1ImageSrc: "/external/project.jpg", feature1ImageAlt: "Accurate Weather Forecast Image", feature1Description: "Join us on a fascinating journey through the diverse weather events of recent years. In the business world, data is indispensable, and we provide it to you quickly and free of charge via our website - whether it's accessible locally or stored in a database. With us, you gain access to comprehensive weather data, and we strive to make it easily accessible to everyone. Our platform offers a user-friendly interface to quickly access local weather data, whether for research purposes, business analysis, or simply out of personal interest.", }; Features17.propTypes = { feature1Title: PropTypes.string, feature1ImageSrc: PropTypes.string, feature1ImageAlt: PropTypes.string, feature1Description: PropTypes.string, }; export default Features17;