import React, { useState } from 'react'; import CounterUpCom from '../../lib/CounterUpCom'; import PopupVideo from '../PopupVideo'; function MissionStatement() { const [showQuestion, setQuestion] = useState(1); const [showVideo, setVideoValue] = useState(false); const openQuestion = (e, value) => { e.preventDefault(); setQuestion(value); }; const ourMissions = [ { id: 1, title: "Rewards Family and Personal Goals", content: "We will be the best platform for you to set a rewardable goal for you, your family, and others", }, { id: 2, title: "Expand Earning Opportunities", content: "We will always present opportunities equally", }, { id: 3, title: "Exhibit your Capabilities", content: "We will let your ability shine to opportunities", }, { id: 4, title: "Get your work done", content: "For other tasks you need to get done, we will be there for smooth engagement", } ]; const handleShowVideo = (e) => { e.preventDefault(); setVideoValue(!showVideo); }; return ( <> {showVideo && ( handleShowVideo(e)} /> )}

Our Mission.

Our mission at WrenchBoard is to empower individuals, families and communities through :

{ ourMissions.map((item) => (
openQuestion(e, item.id)} >

{item.title}

{item.content}

)) }
); } export default MissionStatement;