diff --git a/src/assets/css/main.css b/src/assets/css/main.css index a830a8e..8f101d7 100755 --- a/src/assets/css/main.css +++ b/src/assets/css/main.css @@ -4239,6 +4239,18 @@ p { background-repeat: no-repeat; background-size: cover; } +.mission-side-box { + position: absolute; + top: 0; + right: 0; + height: 100%; + width: 50%; + background-image: url(../images/mission-bg.png); + background-position: center; + background-repeat: no-repeat; + background-size: cover; +} + @media only screen and (min-width: 768px) and (max-width: 991px) { .appie-faq-8-area .faq-play-box { display: none; diff --git a/src/assets/images/mission-bg.png b/src/assets/images/mission-bg.png new file mode 100644 index 0000000..d2b441a Binary files /dev/null and b/src/assets/images/mission-bg.png differ diff --git a/src/components/Service/MissionStatement.js b/src/components/Service/MissionStatement.js new file mode 100644 index 0000000..272d3a1 --- /dev/null +++ b/src/components/Service/MissionStatement.js @@ -0,0 +1,138 @@ + +import React, { useState } from 'react'; +import CounterUpCom from '../../lib/CounterUpCom'; +import PopupVideo from '../PopupVideo'; + +function MissionStatement() { + const [showQuestion, setQuestion] = useState(0); + const [showVideo, setVideoValue] = useState(false); + const openQuestion = (e, value) => { + e.preventDefault(); + setQuestion(value); + }; + 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 : +

+
+
+
+
openQuestion(e, 0)} + > +
+
+

Does Appie have dynamic content?

+
+
+
+

+ Naff Oxford vagabond in my flat chinwag + blatant grub tomfoolery that I bits and bobs + up the cras boot. +

+
+
+
+
+
openQuestion(e, 1)} + > +
+
+

Where do I usually find FAQs in a page?

+
+
+
+

+ Naff Oxford vagabond in my flat chinwag + blatant grub tomfoolery that I bits and bobs + up the cras boot. +

+
+
+
+
+
openQuestion(e, 2)} + > +
+
+

Website & Mobile App Design

+
+
+
+

+ Naff Oxford vagabond in my flat chinwag + blatant grub tomfoolery that I bits and bobs + up the cras boot. +

+
+
+
+
+
+
+
+
+
+ +
+ +
+ +
+ + ); +} + +export default MissionStatement; + diff --git a/src/components/Service/index.js b/src/components/Service/index.js index 19e22b3..a97b30b 100644 --- a/src/components/Service/index.js +++ b/src/components/Service/index.js @@ -9,6 +9,7 @@ import DetailsService from './DetailsService'; import HeaderService from './HeaderService'; import HeroService from './HeroService'; import HeroNews from '../News/HeroNews'; +import MissionStatement from "./MissionStatement"; function Service() { useEffect(() => { @@ -27,6 +28,7 @@ function Service() { { link: '/service', title: 'Service' }, ]} /> + {/**/} {/**/}