import React from "react"; import PropTypes from "prop-types"; import "./footer15.css"; const Footer15 = (props) => { return (
{props.logoAlt} window.open("https://www.hft-stuttgart.de/", "_blank")} />
window.open("https://www.facebook.com/HFTStuttgart/?locale=de_DE", "_blank")} > window.open("https://www.instagram.com/hft_stuttgart/", "_blank")} > window.open("https://twitter.com/Hftonline", "_blank")} > window.open("https://www.linkedin.com/school/hochschule-f%C3%BCr-technik-stuttgart-%E2%80%93-university-of-applied-sciences/", "_blank")} > window.open("https://www.youtube.com/channel/UCi0_JfF2qMZbOhOnNH5PyHA", "_blank")}>
{props.copyright}
); }; Footer15.defaultProps = { action1: "Contact Us", copyright: "© 2024 Weather Applikation. All rights reserved.", content2: "Stay updated with the latest weather information.", logoAlt: "HFT-Logo", content1: "Get accurate weather forecasts for any location.", }; Footer15.propTypes = { action1: PropTypes.string, copyright: PropTypes.string, content2: PropTypes.string, logoAlt: PropTypes.string, content1: PropTypes.string, }; export default Footer15;