import { useState, useEffect } from "react"; import Abou from "@/src/components/services-details-banner/abou.js"; import Counter from "@/src/components/Counter"; import Faqs from "@/src/components/Faqs"; import LogoSlider from "@/src/components/LogoSlider"; import Layout from "@/src/layout/Layout"; import { testimonial_list_slider } from "@/src/sliderProps"; import Link from "next/link"; import { Nav, Tab } from "react-bootstrap"; import { Swiper, SwiperSlide } from "swiper/react"; import { brandListProps2 } from "@/src/sliderProps"; import SubCard from "@/src/components/AboveFooter"; import ConsenHead from "@/src/ConsenHead"; import GoogleReviewsBranding from "@/src/components/GoogleReviewsBranding"; const About = () => { const [reviews, setReviews] = useState([]); const [loading, setLoading] = useState(true); const [expandedReview, setExpandedReview] = useState(null); const [isClient, setIsClient] = useState(false); useEffect(() => { setIsClient(true); async function loadReviews() { try { // console.log("About: Fetching reviews..."); const res = await fetch("/api/reviews"); const data = await res.json(); // console.log("About: Received data:", data); const cleaned = (data.reviews || []).filter(r => (r.text || r.description || r.snippet || r.review_text || r.body || r.content) && r.rating >= 4 ); // console.log("About: Cleaned reviews (rating >= 4):", cleaned.length); setReviews(cleaned); } catch (error) { // console.error("About: Failed to fetch reviews", error); } finally { setLoading(false); } } loadReviews(); }, []); const displayedReviews = reviews.length > 0 && reviews.length < 3 ? [...reviews, ...reviews, ...reviews] : reviews; function renderStars(rating) { return [...Array(5)].map((_, i) => ( )); } function getReviewText(r) { return r.text || r.description || r.snippet || r.review_text || r.body || r.content || ""; } function truncateText(text) { return text.length > 150 ? text.substring(0, 150) + "..." : text; } function getProfileImage(r) { const url = r.profile_photo_url || r.author_profile_photo_url || r.user?.thumbnail; if (!url) return null; return url.startsWith("http") ? url : `https://lh3.googleusercontent.com/${url}`; } function getInitials(name) { if (!name) return "U"; return name.split(' ').map(n => n[0]).join('').substring(0, 2).toUpperCase(); } return ( <> {/* ========================================================= */} {/* Start abouts area */} {/* ========================================================= */}
Our story
About Us

Our Story

Metatron Cube India was founded with a clear mission - to transform ideas into impactful digital solutions. With a passion for technology and innovation, we have been helping businesses achieve growth through website development, mobile app development, SEO, digital marketing, UI/UX, and graphic design services. Over the years, we’ve built a reputation for delivering scalable, creative, and results-driven digital experiences.

icon
Next-Gen Solutions

We design cutting-edge websites, apps, and digital strategies that not only meet industry standards but also set new benchmarks for quality and performance.

icon
Team-Driven Success

Our skilled developers, designers, and strategists work as one - combining creativity with technical expertise to deliver projects that exceed expectations.

icon
Future-Focused Vision

By anticipating market trends and adopting the latest technologies, we ensure your business is always one step ahead in the fast-evolving digital landscape.

{/*==================================================*/} {/* End abouts Area */} {/*==================================================*/} {/*==================================================*/} {/* Start Brand Area */} {/*==================================================*/}
BigCommerce Partner logo, symbolizing a strong e-commerce alliance.
Shopify logo with a green shopping bag icon.
Constant Contact logo with a stylized '@' symbol.
HIKE SEO logo depicting a rising graph within the letter 'K'.
BigCommerce Partner logo, symbolizing a strong e-commerce alliance.
Shopify logo with a green shopping bag icon.
Constant Contact logo with a stylized '@' symbol.
HIKE SEO logo depicting a rising graph within the letter 'K'.
{/*==================================================*/} {/* End brand Area */} {/*==================================================*/} {/*==================================================*/} {/* Start consen Skill Area Css */} {/*==================================================*/}
Discover Our Approach

An Agency That

Turning Your Vision Into Reality

Every project we take on goes beyond execution - it’s a true collaboration. We’re motivated by your goals, your drive, and your journey, and our role is to strengthen and accelerate it.

Whether you’re launching a new idea, expanding an established brand, or reinventing your digital identity, we bring passion, deep expertise, and innovative thinking to every stage. At MetatronCube India, we don’t just deliver solutions - we build lasting partnerships, standing by you as committed allies focused on long-term success.

  • Rapid development delivery - Agile, dependable, and scalable web & app solutions.
  • High-quality services at fair value - Excellence without unnecessary costs.
  • Proven and reliable team - Experienced professionals dedicated to your growth.
Agency that gets excited about

+
YEARS EXPERIENCE
{/*
*/}
{/*==================================================*/} {/* End consen Skill Area Css */} {/*==================================================*/} {/*==================================================*/} {/* Start consen case study Area */} {/*==================================================*/}
Partner With Us

We Deliver More Than Just Platforms.

Appropriately enhance principle-centered innovation rather than high standards in platforms. Credibly orchestrate functional.

Our Mission

Our mission is to empower businesses with cutting-edge digital solutions that enhance growth, efficiency, and connectivity. By combining creativity with advanced technology, we aim to deliver web and mobile applications that surpass expectations and keep brands future-ready.

Our Values

We are driven by trust, innovation, and excellence. Collaboration and teamwork lie at the heart of everything we do. Adaptability, continuous learning, and a customer-first mindset shape our approach, while sustainability and responsibility guide how we create solutions that make a lasting impact.

{/*==================================================*/} {/* End consen case study Area */} {/*==================================================*/} {/*==================================================*/} {/* Start process Area */} {/*==================================================*/}

+

Completed Projects

+

Ongoing Clients

+

Skilled Experts

+

Satisfied Clients

{/*=================================================*/} {/* End Process Area */} {/*==================================================*/} {/*==================================================*/} {/* Start consen Testimonial Area */} {/*==================================================*/}
Our Testimonials

Hear From Our Happy Customers

{loading ? (

Loading reviews...

) : isClient && ( {displayedReviews.map((r, index) => { const fullText = getReviewText(r); const isExpanded = expandedReview === index; const profileImg = getProfileImage(r); const name = r.user?.name || r.author_name || "Customer"; return (
{profileImg ? ( {name} (e.target.style.display = 'none')} style={{ width: "100%", height: "100%", objectFit: "cover" }} /> ) : ( {getInitials(name)} )}

{name}

{renderStars(r.rating)}

{fullText}

); })}
)}
Decorative Shape
{/*==================================================*/} {/* End consen Testimonial Area */} {/*==================================================*/} {/*==================================================*/} {/*==================================================*/} {/* Start consen Call Do Action Area Css */} {/*==================================================*/}
Ready to Start?

Turn your ideas into reality with us.

{/*==================================================*/} {/* End consen Call Do Action Area Css */} {/*==================================================*/} {/*==================================================*/} {/* Start consen Subscribe Area */} {/*==================================================*/}
{/*==================================================*/} {/* End consen Subscribe Area */} {/*==================================================*/}
); }; export default About;