Compare commits

..

12 Commits

Author SHA1 Message Date
CHIEFSOFT\ameye ed95226b67 blog data 2025-08-23 19:55:21 -04:00
CHIEFSOFT\ameye 2b1ce891b2 Merge branch 'master' of https://gitlab.chiefsoft.net/MyFit/www-myfit 2025-08-23 19:42:28 -04:00
CHIEFSOFT\ameye 2615396bf4 fix data 2025-08-23 19:42:06 -04:00
Fluxtra 47b29961ab addded slash to footer file 2025-05-18 11:41:07 -04:00
Fluxtra 418c43cde4 Fix the env date 2025-05-18 11:31:00 -04:00
Olusesan Ameye 28b9a1980e Switched docker registry registry.myfit.ai/www-myfit => registry.chiefsoft.net/www-myfit 2025-03-19 19:28:21 +00:00
ameye c5e05a562d Merge branch 'homepage-slides-update' of MyFit/www-myfit into master 2024-01-07 18:01:25 +00:00
ebube 25dbb98a9d added new photo 2024-01-07 09:54:07 -08:00
ameye df86cd9a42 Merge branch 'homepage-slides-update' of MyFit/www-myfit into master 2024-01-07 11:57:44 +00:00
ebube 6e91aea3b1 Add: images to homepage 2024-01-06 22:24:51 -08:00
ebube d732d35023 Added new slide images to homepage and removed unused app download links 2024-01-06 22:20:24 -08:00
CHIEFSOFT\ameye 2460f5d618 my fit logo 2024-01-04 15:14:47 -05:00
11 changed files with 33 additions and 10 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=2023
REACT_APP_YEAR=2025
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=2023
REACT_APP_YEAR=2025
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=2023
REACT_APP_YEAR=2025
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.myfit.ai/www-myfit:latest
image: registry.chiefsoft.net/www-myfit:latest
build:
context: .
dockerfile: Dockerfile
Binary file not shown.

After

Width:  |  Height:  |  Size: 70 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.7 KiB

After

Width:  |  Height:  |  Size: 132 KiB

Binary file not shown.

After

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="/blog">Blog</Link>
<Link to="https://blog.myfit.ai/">Blog</Link>
</li>
<li>
<Link to="/contact">Contact us</Link>
+2 -1
View File
@@ -18,6 +18,7 @@ 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 }) => {
@@ -126,7 +127,7 @@ const Main = ({ setfooter, setnavbar, setbrdcum }) => {
</div>
<div className="item">
<div className="slider_img">
<img src={screen} alt="image" />
<img src={thirdSlide} alt="image" />
</div>
</div>
</OwlCarousel>
+1 -1
View File
@@ -33,7 +33,7 @@ const Main = () => {
</div>
<div className="row">
{blogData.slice(1, 4).map((data, index) => (
{ (blogData !== undefined) && (blogData?.length > 0) && blogData.slice(1, 4).map((data, index) => (
<div
className="col-md-4"
key={index}>
+25 -3
View File
@@ -7,7 +7,8 @@ class SiteService {
}
// Blog Data {Get}
blogData(id) {
return this.getAuxEnd("/blogdata", null);
//myfit
return this.getBlogEnd("/myfit", null);
}
// Country Data {GET}
@@ -56,13 +57,34 @@ 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;
console.log("~~~~~~~ Toks2 POST ~~~~~~~~");
// res = response
return response;
})
.catch((error) => {