"use client"; import Link from 'next/link'; import React, { useState } from 'react'; import GsapReveal from '@/components/common/GsapReveal'; import CircularProgress from '@/components/common/CircularProgress/CircularProgress'; import ContactPopup from '@/components/common/ContactPopup/ContactPopup'; const About = () => { const [isContactOpen, setIsContactOpen] = useState(false); return (
About MetatronCube IT Solution
About MetatronCube IT Solution

Your Growth-Focused Website Development Partner

Your website is more than just a digital presence — it's your 24/7 sales machine.

We specialize in:
  • Business Websites
  • Corporate Websites
  • Landing Pages
  • E-commerce Stores
  • Custom Web Applications

Our team combines strategy, design, development, and marketing expertise to create websites that don’t just look good — they perform.

setIsContactOpen(false)} />
); }; export default About;