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

{props.feature1Title}

{props.feature1Description}

); }; Features17.defaultProps = { feature1Title: "About Us...", feature1ImageSrc: "/external/HFT-logo-klein-Aplustext.jpg", feature1ImageAlt: "Accurate Weather Forecast Image", feature1Description: "We are a group of students from the Bachelor's program 'Digitalisierung und Informationsmanagement' at the University of Applied Sciences Stuttgart. Our common goal is to provide accurate and comprehensive weather data, both historical and current information. These data should be easily accessible to everyone and available for further analysis and applications.", }; Features17.propTypes = { feature1Title: PropTypes.string, feature1ImageSrc: PropTypes.string, feature1ImageAlt: PropTypes.string, feature1Description: PropTypes.string, }; export default Features17;