WEB DEVELOPMENT

I am a dedicated developer and UI/UX designer committed to designing, developing, and maintaining modern web and mobile applications. I am passionate about solving complex business problems and bring a unique blend of technical expertise and creative flair to every project.

Project & Business I help

I design, develop and maintain I design, develop and maintain modern web and mobile applications. Solves all of your business problems. modern web and mobile applications. Solves all of your business problems.

Petsmarket.com

Working as a frontend developer using Reactjs, Redux, Redux Toolkit, Axios, React Helmet and many other libraries.

Petsmarket.com

Working as a frontend developer using Reactjs, Redux, Redux Toolkit, Axios, React Helmet and many other libraries.

Petsmarket.com

Working as a frontend developer using Reactjs, Redux, Redux Toolkit, Axios, React Helmet and many other libraries.

Petsmarket.com

Working as a frontend developer using Reactjs, Redux, Redux Toolkit, Axios, React Helmet and many other libraries.
document.addEventListener('DOMContentLoaded', function() { const svgPath = document.querySelector('#scrollLine'); if (svgPath) { const pathLength = svgPath.getTotalLength(); svgPath.style.strokeDasharray = pathLength; svgPath.style.strokeDashoffset = pathLength; window.addEventListener('scroll', function() { const scrollTop = window.pageYOffset; const windowHeight = window.innerHeight; const documentHeight = document.documentElement.scrollHeight - windowHeight; const scrollPercent = scrollTop / documentHeight; svgPath.style.strokeDashoffset = pathLength * (1 - scrollPercent); }); } else { console.error("SVG path with ID 'scrollLine' not found."); } });