import React from 'react' import PropTypes from 'prop-types' import './gallery1.css' const Gallery1 = (props) => { return (

{props.heading1}

{props.content1}
{props.image1Alt}
{props.image2Alt}
{props.image3Alt}
) } Gallery1.defaultProps = { image3Src: 'https://images.unsplash.com/photo-1604420958310-273dbd024b4e?crop=entropy&cs=tinysrgb&fit=max&fm=jpg&ixid=M3w5MTMyMXwwfDF8cmFuZG9tfHx8fHx8fHx8MTcxNTQzMTM1OHw&ixlib=rb-4.0.3&q=80&w=1080', content1: 'Explore different weather conditions through images from around the world.', image1Src: 'https://images.unsplash.com/photo-1601027191903-f97442c175c2?crop=entropy&cs=tinysrgb&fit=max&fm=jpg&ixid=M3w5MTMyMXwwfDF8cmFuZG9tfHx8fHx8fHx8MTcxNTQzMTM1OHw&ixlib=rb-4.0.3&q=80&w=1080', image3Alt: 'Snowy landscape in the countryside', image2Alt: 'Rainy day in the city', image2Src: 'https://images.unsplash.com/photo-1499951360447-b19be8fe80f5?crop=entropy&cs=tinysrgb&fit=max&fm=jpg&ixid=M3w5MTMyMXwwfDF8cmFuZG9tfHx8fHx8fHx8MTcxNTQzMTM1OXw&ixlib=rb-4.0.3&q=80&w=1080', heading1: 'Photo Gallery of the Services you provide', image1Alt: 'City skyline under clear sky', } Gallery1.propTypes = { image3Src: PropTypes.string, content1: PropTypes.string, image1Src: PropTypes.string, image3Alt: PropTypes.string, image2Alt: PropTypes.string, image2Src: PropTypes.string, heading1: PropTypes.string, image1Alt: PropTypes.string, } export default Gallery1