Compare commits

...

13 Commits

6 changed files with 48 additions and 77 deletions
+43 -67
View File
@@ -61,14 +61,14 @@ const Main = ({ footer }) => {
</ul>
<ul className="social_media">
<li>
<Link to="#">
<a href={process.env.REACT_APP_FACEBOOK}>
<i className="icofont-facebook"></i>
</Link>
</a>
</li>
<li>
<Link to="#">
<a href ={process.env.REACT_APP_TWITTER}>
<i className="icofont-twitter"></i>
</Link>
</a>
</li>
</ul>
</div>
@@ -116,12 +116,12 @@ const Main = ({ footer }) => {
<h3>Lets Try Out</h3>
<ul className="app_btn">
<li>
<a href="https://play.google.com/store/apps/details?id=com.mermsemr.myfit">
<a href={process.env.REACT_APP_ANDROID_URL}>
<img src={blueapp} alt="image" />
</a>
</li>
<li>
<a href="https://play.google.com/store/apps/details?id=com.mermsemr.myfit">
<a href={process.env.REACT_APP_IOS_URL}>
<img src={blue} alt="image" />
</a>
</li>
@@ -197,15 +197,15 @@ const Main = ({ footer }) => {
</li>
</ul>
<ul className="social_media">
<li>
<Link to="#">
<i className="icofont-facebook"></i>
</Link>
<li>
<a href={process.env.REACT_APP_FACEBOOK}>
<i className="icofont-facebook"></i>
</a>
</li>
<li>
<Link to="#">
<i className="icofont-twitter"></i>
</Link>
<a href ={process.env.REACT_APP_TWITTER}>
<i className="icofont-twitter"></i>
</a>
</li>
</ul>
</div>
@@ -253,19 +253,13 @@ const Main = ({ footer }) => {
<h3>Lets Try Out</h3>
<ul className="app_btn">
<li>
<a href="https://play.google.com/store/apps/details?id=com.mermsemr.myfit">
<img
src="assets/images/appstore_blue.png"
alt="image"
/>
<a href={process.env.REACT_APP_ANDROID_URL}>
<img src={blueapp} alt="image" />
</a>
</li>
<li>
<a href="https://play.google.com/store/apps/details?id=com.mermsemr.myfit">
<img
src="assets/images/googleplay_blue.png"
alt="image"
/>
<a href={process.env.REACT_APP_IOS_URL}>
<img src={blue} alt="image" />
</a>
</li>
</ul>
@@ -327,14 +321,14 @@ const Main = ({ footer }) => {
</ul>
<ul className="social_media">
<li>
<Link to="#">
<a href={process.env.REACT_APP_FACEBOOK}>
<i className="icofont-facebook"></i>
</Link>
</a>
</li>
<li>
<Link to="#">
<a href ={process.env.REACT_APP_TWITTER}>
<i className="icofont-twitter"></i>
</Link>
</a>
</li>
</ul>
</div>
@@ -389,20 +383,14 @@ const Main = ({ footer }) => {
<div className="try_out">
<h3>Lets Try Out</h3>
<ul className="app_btn">
<li>
<a href="https://play.google.com/store/apps/details?id=com.mermsemr.myfit">
<img
src="assets/images/appstore_blue.png"
alt="image"
/>
<li>
<a href={process.env.REACT_APP_ANDROID_URL}>
<img src={blueapp} alt="image" />
</a>
</li>
<li>
<a href to="https://play.google.com/store/apps/details?id=com.mermsemr.myfit">
<img
src="assets/images/googleplay_blue.png"
alt="image"
/>
<a href={process.env.REACT_APP_IOS_URL}>
<img src={blue} alt="image" />
</a>
</li>
</ul>
@@ -458,14 +446,14 @@ const Main = ({ footer }) => {
</ul>
<ul className="social_media">
<li>
<Link to="#">
<a href={process.env.REACT_APP_FACEBOOK}>
<i className="icofont-facebook"></i>
</Link>
</a>
</li>
<li>
<Link to="#">
<a href ={process.env.REACT_APP_TWITTER}>
<i className="icofont-twitter"></i>
</Link>
</a>
</li>
</ul>
</div>
@@ -521,19 +509,13 @@ const Main = ({ footer }) => {
<h3>Lets Try Out</h3>
<ul className="app_btn">
<li>
<a href="https://play.google.com/store/apps/details?id=com.mermsemr.myfit">
<img
src="assets/images/appstore_blue.png"
alt="image"
/>
<a href={process.env.REACT_APP_ANDROID_URL}>
<img src={blueapp} alt="image" />
</a>
</li>
<li>
<a href="https://play.google.com/store/apps/details?id=com.mermsemr.myfit">
<img
src="assets/images/googleplay_blue.png"
alt="image"
/>
<a href={process.env.REACT_APP_IOS_URL}>
<img src={blue} alt="image" />
</a>
</li>
</ul>
@@ -597,14 +579,14 @@ const Main = ({ footer }) => {
</ul>
<ul className="social_media">
<li>
<Link to="#">
<a href={process.env.REACT_APP_FACEBOOK}>
<i className="icofont-facebook"></i>
</Link>
</a>
</li>
<li>
<Link to="#">
<a href ={process.env.REACT_APP_TWITTER}>
<i className="icofont-twitter"></i>
</Link>
</a>
</li>
</ul>
</div>
@@ -657,20 +639,14 @@ const Main = ({ footer }) => {
<div className="try_out">
<h3>Lets Try Out</h3>
<ul className="app_btn">
<li>
<a href="https://play.google.com/store/apps/details?id=com.mermsemr.myfit">
<img
src="assets/images/appstore_blue.png"
alt="image"
/>
<li>
<a href={process.env.REACT_APP_ANDROID_URL}>
<img src={blueapp} alt="image" />
</a>
</li>
<li>
<a href="https://play.google.com/store/apps/details?id=com.mermsemr.myfit">
<img
src="assets/images/googleplay_blue.png"
alt="image"
/>
<a href={process.env.REACT_APP_IOS_URL}>
<img src={blue} alt="image" />
</a>
</li>
</ul>
+1 -2
View File
@@ -47,8 +47,7 @@ const Main = () => {
<div className="free_text">
<div className="section_title">
<h2>Lets download free from apple and play store</h2>
<p>Instant free download from apple and play store orem Ipsum is simply dummy text of the printing.
and typese tting indus orem Ipsum has beenthe standard</p>
<p>Instant free download from apple and play store. All you need is an iPhone or Android device to enjoy all personalized metrics for personal use. Welcome to myFit App.</p>
</div>
<ul className="app_btn">
<li>
+1 -2
View File
@@ -24,8 +24,7 @@ const Main = ({gredient}) => {
<div className="container">
<div className="section_title" data-aos="fade-up" data-aos-duration="1500" data-aos-delay="300">
<h2><span>FAQ</span> - Frequently Asked Questions</h2>
<p>Lorem Ipsum is simply dummy text of the printing and typese tting <br/> indus orem Ipsum has beenthe
standard dummy.</p>
<p>Organizing all types of wellness activity you desire.<br/>Proven step to increase pleasure and commitment.</p>
</div>
<div className="faq_panel">
<div className="accordion" id="accordionExample">
+1 -2
View File
@@ -223,8 +223,7 @@ const Main = ({brdcum}) => {
<div className="free_text">
<div className="section_title">
<h2>Lets download free from apple and play store</h2>
<p>Instant free download from apple and play store orem Ipsum is simply dummy text of the printing.
and typese tting indus orem Ipsum has beenthe standard</p>
<p>Instant free download from apple and play store. All you need is an iPhone or Android device to enjoy all personalized metrics for personal use. Welcome to myFit App.</p>
</div>
<ul className="app_btn">
<li>
+1 -2
View File
@@ -326,8 +326,7 @@ const Main = ({brdcum}) => {
<div className="free_text">
<div className="section_title">
<h2>Lets download free from apple and play store</h2>
<p>Instant free download from apple and play store orem Ipsum is simply dummy text of the printing.
and typese tting indus orem Ipsum has beenthe standard</p>
<p>Instant free download from apple and play store. All you need is an iPhone or Android device to enjoy all personalized metrics for personal use. Welcome to myFit App.</p>
</div>
<ul className="app_btn">
<li>
+1 -2
View File
@@ -209,8 +209,7 @@ const Main = ({brdcum}) => {
<div className="free_text">
<div className="section_title">
<h2>Lets download free from apple and play store</h2>
<p>Instant free download from apple and play store orem Ipsum is simply dummy text of the printing.
and typese tting indus orem Ipsum has beenthe standard</p>
<p>Instant free download from apple and play store. All you need is an iPhone or Android device to enjoy all personalized metrics for personal use. Welcome to myFit App.</p>
</div>
<ul className="app_btn">
<li>