51 lines
2.2 KiB
JavaScript
51 lines
2.2 KiB
JavaScript
import Head from "next/head";
|
|
import Layout from "@/src/layout/Layout";
|
|
import dynamic from "next/dynamic";
|
|
import ConsenHead from "@/src/ConsenHead";
|
|
import Banner2 from "@/src/components/Home/Banner2";
|
|
import Whychooseus from "@/src/components/Mobile-app-development-service/why-choose-us";
|
|
import AboutOurTeam from "@/src/components/Mobile-app-development-service/about-our-team";
|
|
import WeServe from "@/src/components/Mobile-app-development-service/we-serve";
|
|
import OurDevelopment from "@/src/components/Mobile-app-development-service/our-development";
|
|
import WhoCanBenifit from "@/src/components/Mobile-app-development-service/who-can-benifit";
|
|
import KeyFeatures from "@/src/components/Mobile-app-development-service/key-feacture";
|
|
import HookClosing from "@/src/components/Mobile-app-development-service/hook-closing";
|
|
import TestimonialSection from "@/src/components/Mobile-app-development-service/testimonial";
|
|
import Faq from "@/src/components/Mobile-app-development-service/faq";
|
|
import CaseStudie from "@/src/components/Mobile-app-development-service/CaseStudies";
|
|
|
|
const CaseStudies2 = dynamic(() => import("@/src/components/isotope/CaseStudies2"), { ssr: false });
|
|
|
|
const Index4 = () => {
|
|
return (
|
|
<>
|
|
<Head>
|
|
<meta name="robots" content="noindex, nofollow" />
|
|
</Head>
|
|
<Layout header={9} footer={9} appmobilemenu>
|
|
<ConsenHead
|
|
title="Metatroncube: Leaders in Web & Mobile Dev, SEO, Digital Marketing"
|
|
description="Metatroncube Software Solutions: Your go-to agency for cutting-edge web & app development, SEO, digital marketing, and graphic design services"
|
|
/>
|
|
|
|
<div id="home"><Banner2 /></div>
|
|
<div id="about"><Whychooseus /></div>
|
|
<div id="team"><AboutOurTeam /></div>
|
|
<div id="service"><WeServe /></div>
|
|
<OurDevelopment />
|
|
<div id="blog"><WhoCanBenifit /></div>
|
|
<KeyFeatures />
|
|
<HookClosing />
|
|
<TestimonialSection />
|
|
{/* <div className="case-study-area style-three pt-0">
|
|
<div id="portfolio" className="container">
|
|
<CaseStudie />
|
|
</div>
|
|
</div> */}
|
|
<div id="faq"><Faq /></div>
|
|
</Layout>
|
|
</>
|
|
);
|
|
};
|
|
|
|
export default Index4; |