diff --git a/src/assets/css/style.css b/src/assets/css/style.css index a377b68..75a5e49 100644 --- a/src/assets/css/style.css +++ b/src/assets/css/style.css @@ -2776,6 +2776,17 @@ header.fix_style.white_header { .about_page_sectino img { max-width: 100%; } +.about_page_sectino .abt_img img{ + animation-name: scale-image; + animation-duration: 1s; + animation-timing-function: linear; + animation-iteration-count: infinite; +} +@keyframes scale-image { + 0%{transform: scale(1);} + 50%{transform: scale(1.01);} + 100%{transform: scale(1);} +} /* -----------experts_team_sectio---------- */ diff --git a/src/assets/images/about_main_image.png b/src/assets/images/about_main_image.png new file mode 100644 index 0000000..27de68e Binary files /dev/null and b/src/assets/images/about_main_image.png differ diff --git a/src/component/AboutUs/Main.js b/src/component/AboutUs/Main.js index 65d415e..038d348 100644 --- a/src/component/AboutUs/Main.js +++ b/src/component/AboutUs/Main.js @@ -10,12 +10,14 @@ import About1 from '../../assets/images/about_one.png' import About2 from '../../assets/images/about_two.png' import About3 from '../../assets/images/about_three.png' +import AboutMainImg from '../../assets/images/about_main_image.png' + const Main = ({brdcum}) => { const [ytShow , setytShow] = useState (false) // About us text variables let innovativeDesc = 'The team at myFit by Fluxtra LLC works with you to achieve your health objectives without getting in your way. Do your health your way to get the best result for you and your family. We are you, always ready and always engaged with the users to help get the best out of our solution.' - 'We work with you to achieve your health and fitness goals by providing solutions that fit your goals.' + let whyWeAreDiff = { desc:'We work with you to achieve your health and fitness goals by providing solutions that fit your goals.', secureDesc:"MyFit is built to keep your data secure and protect your privacy. Your data is encrypted and you are always in control of your information.", @@ -171,7 +173,7 @@ const Main = ({brdcum}) => {
+