"use client"; import React, { useState, useEffect, useRef } from 'react'; const AboutThree = () => { const [count, setCount] = useState(0); const countTarget = 10; const [hasCounted, setHasCounted] = useState(false); const counterRef = useRef(null); useEffect(() => { const observer = new IntersectionObserver((entries) => { if (entries[0].isIntersecting) { setHasCounted(true); let start = 0; const duration = 1500; const increment = countTarget / (duration / 16); const timer = setInterval(() => { start += increment; if (start >= countTarget) { setCount(countTarget); clearInterval(timer); } else { setCount(Math.floor(start)); } }, 16); } else { setHasCounted(false); setCount(0); } }, { threshold: 0.5 }); if (counterRef.current) { observer.observe(counterRef.current); } return () => observer.disconnect(); }, []); return (
Team defining innovation strategy at Metatron Cube Solutions.
element-1
Benefits That Matter

What We Offer

From career growth to work-life balance, discover why Metatroncube is the right place for you.

  • Innovate Fearlessly

    Innovate Fearlessly

  • {/* The right therapist can help you develop skills */}

{count}+

Years Experience

  • Opportunities to Innovate: Work on cutting-edge projects that challenge you to think outside the box.
  • Global Exposure: Collaborate with international clients and diverse teams.
  • Career Growth: Advance your skills with our mentorship programs, certifications, and workshops.
  • Inclusive Culture: Be part of a workplace that values diversity, equity, and belonging.
  • Employee-First Approach: Enjoy flexible work policies, wellness programs, and a focus on work-life balance.
What we offer
); }; export default AboutThree;