"use client"; import React from "react"; import Link from "next/link"; import { ourServices } from "@/utils/data"; const HomeServiceOne: React.FC = () => { return (
OUR SERVICES

We Shape the Perfect Solution.

At Metatroncube, we sculpt digital excellence, meticulously blending innovation with user-centric design to manifest your business vision. Partner with us to experience a seamless fusion of web & app development, SEO, digital marketing, and graphic design services. Our strategic solutions and unparalleled execution pave the way for your digital voyage. We are your navigators in the digital realm, steering your project from conception to completion with precision and creativity.

{ourServices.slice(0, 7).map((service, index) => { return (
icon

--

{service.title}

{service.description.substring(0, 100)}...

{service.title}
); })}
); }; export default HomeServiceOne;