Compare commits

..

1 Commits

Author SHA1 Message Date
ebube fced9b6084 Update homepage slides and interface images 2024-01-06 22:08:56 -08:00
11 changed files with 10 additions and 33 deletions
+1 -1
View File
@@ -1,7 +1,7 @@
REACT_APP_US_ADDRESS="USA: 32 Oatgrass Dr, Grayson GA 30017"
REACT_APP_US_PHONE="(415) 251 7583"
REACT_APP_SUPPORT_EMAIL="support@myfit.ai"
REACT_APP_YEAR=2025
REACT_APP_YEAR=2023
REACT_APP_ANDROID_URL="https://play.google.com/store/apps/details?id=com.mermsemr.myfit"
REACT_APP_IOS_URL="https://play.google.com/store/apps/details?id=com.mermsemr.myfit"
+1 -1
View File
@@ -1,7 +1,7 @@
REACT_APP_US_ADDRESS="USA: 32 Oatgrass Dr, Grayson GA 30017"
REACT_APP_US_PHONE="(415) 251 7583"
REACT_APP_SUPPORT_EMAIL="support@myfit.ai"
REACT_APP_YEAR=2025
REACT_APP_YEAR=2023
REACT_APP_ANDROID_URL="https://play.google.com/store/apps/details?id=com.mermsemr.myfit"
REACT_APP_IOS_URL="https://play.google.com/store/apps/details?id=com.mermsemr.myfit"
+1 -1
View File
@@ -1,7 +1,7 @@
REACT_APP_US_ADDRESS="USA: 32 Oatgrass Dr, Grayson GA 30017"
REACT_APP_US_PHONE="(415) 251 7583"
REACT_APP_SUPPORT_EMAIL="support@myfit.ai"
REACT_APP_YEAR=2025
REACT_APP_YEAR=2023
REACT_APP_ANDROID_URL="https://play.google.com/store/apps/details?id=com.mermsemr.myfit"
REACT_APP_IOS_URL="https://play.google.com/store/apps/details?id=com.mermsemr.myfit"
+1 -1
View File
@@ -1,7 +1,7 @@
version: '3'
services:
myfit-www:
image: registry.chiefsoft.net/www-myfit:latest
image: registry.myfit.ai/www-myfit:latest
build:
context: .
dockerfile: Dockerfile
Binary file not shown.

Before

Width:  |  Height:  |  Size: 70 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 132 KiB

After

Width:  |  Height:  |  Size: 2.7 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 242 KiB

+1 -1
View File
@@ -72,7 +72,7 @@ const Main = ({ footer }) => {
<Link to="/about">About us</Link>
</li>
<li>
<Link to="https://blog.myfit.ai/">Blog</Link>
<Link to="/blog">Blog</Link>
</li>
<li>
<Link to="/contact">Contact us</Link>
+1 -2
View File
@@ -18,7 +18,6 @@ import shield from "../../assets/images/shield_icon.png";
import screen from "../../assets/images/screen.png";
import firstSlide from "../../assets/images/myfitscreenhome.png";
import secondSlide from "../../assets/images/myfitscreenlogin.png";
import thirdSlide from "../../assets/images/myfitscreenstartpage.png";
import frame from "../../assets/images/mobile_frame_svg.svg";
const Main = ({ setfooter, setnavbar, setbrdcum }) => {
@@ -127,7 +126,7 @@ const Main = ({ setfooter, setnavbar, setbrdcum }) => {
</div>
<div className="item">
<div className="slider_img">
<img src={thirdSlide} alt="image" />
<img src={screen} alt="image" />
</div>
</div>
</OwlCarousel>
+1 -1
View File
@@ -33,7 +33,7 @@ const Main = () => {
</div>
<div className="row">
{ (blogData !== undefined) && (blogData?.length > 0) && blogData.slice(1, 4).map((data, index) => (
{blogData.slice(1, 4).map((data, index) => (
<div
className="col-md-4"
key={index}>
+3 -25
View File
@@ -7,8 +7,7 @@ class SiteService {
}
// Blog Data {Get}
blogData(id) {
//myfit
return this.getBlogEnd("/myfit", null);
return this.getAuxEnd("/blogdata", null);
}
// Country Data {GET}
@@ -57,34 +56,13 @@ class SiteService {
});
}
getBlogEnd(uri, reqData) {
const endPoint = "https://blogdata.chiefsoft.net/blogdata" + uri;
return Axios.get(endPoint)
.then((response) => {
// console.log(response);
// res = response;
// console.log("~~~~~~~ Toks2 GET ~~~~~~~~");
return response;
})
.catch((error) => {
if (error.response) {
//response status is an error code
console.log(error.response.status);
} else if (error.request) {
//response not received though the request was sent
console.log(error.request);
} else {
//an error occurred when setting up the request
console.log(error.message);
}
});
}
postAuxEnd(uri, reqData) {
const endPoint = process.env.REACT_APP_AUX_ENDPOINT + uri;
return Axios.post(endPoint, reqData)
.then((response) => {
console.log(response);
// res = response
// res = response;
console.log("~~~~~~~ Toks2 POST ~~~~~~~~");
return response;
})
.catch((error) => {