diff --git a/frontend/src/components/Home/Experience.jsx b/frontend/src/components/Home/Experience.jsx index 50453a2..9146f1a 100644 --- a/frontend/src/components/Home/Experience.jsx +++ b/frontend/src/components/Home/Experience.jsx @@ -124,7 +124,7 @@ function ExperienceMobile() { company={currentExperience().company} type={currentExperience().job_type} location={currentExperience().location} - duration={currentExperience().start_date + " (" + Math.floor(new Date(currentExperience().end_date) - new Date(currentExperience().start_date) / (1000 * 60 * 60 * 24 * 30))} + duration= {buildDuration(currentExperience().start_date, currentExperience().end_date)} logo={currentExperience().logo} desc={currentExperience().desc} tech={currentExperience().tech} diff --git a/frontend/src/components/Home/Gallery.jsx b/frontend/src/components/Home/Gallery.jsx index 3a0f25b..4b78c31 100644 --- a/frontend/src/components/Home/Gallery.jsx +++ b/frontend/src/components/Home/Gallery.jsx @@ -27,7 +27,7 @@ function GalleryMobile() {
Do check out my page{" "} _vishal_here_