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

{props.heading1}

{props.content1}

{props.faq1Question}

{props.faq1Answer}

{props.faq2Question}

{props.faq2Answer}

{props.faq3Question}

{props.faq3Answer}

{props.faq4Question}

{props.faq4Answer}

{props.faq5Question}

{props.faq5Answer}

{props.heading2}

{props.content2}

) } FAQ1.defaultProps = { faq4Answer: 'Yes, you can view the weather forecast for the upcoming days to plan ahead.', faq5Question: 'How accurate is the weather data provided?', action1: 'Contact', faq1Question: 'How do I search for weather information?', faq4Question: 'Can I view the weather forecast for multiple days?', faq3Answer: 'Yes, the weather information is updated in real-time to provide you with the most accurate data.', faq3Question: 'Is the weather information updated in real-time?', content1: 'Lorem ipsum dolor sit amet, consectetur adipiscing elit. Suspendisse varius enim in eros elementum tristique.', content2: 'Lorem ipsum dolor sit amet, consectetur adipiscing elit. ', heading2: 'Still have a question?', heading1: 'FAQs', faq5Answer: 'The weather data is sourced from reliable sources to provide accurate and up-to-date information.', faq1Answer: 'You can input the city and country, or the latitude and longitude of the city in the search bar to get weather information.', faq2Answer: 'Yes, you can create an account and save your favorite cities for quick access to their weather information.', faq2Question: 'Can I save my favorite cities for quick access?', } FAQ1.propTypes = { faq4Answer: PropTypes.string, faq5Question: PropTypes.string, action1: PropTypes.string, faq1Question: PropTypes.string, faq4Question: PropTypes.string, faq3Answer: PropTypes.string, faq3Question: PropTypes.string, content1: PropTypes.string, content2: PropTypes.string, heading2: PropTypes.string, heading1: PropTypes.string, faq5Answer: PropTypes.string, faq1Answer: PropTypes.string, faq2Answer: PropTypes.string, faq2Question: PropTypes.string, } export default FAQ1