2025-08-30 18:43:47 +05:30

53 lines
1.8 KiB
JavaScript

import Layout from "@/src/layout/Layout";
import BrandSlider from "@/src/components/BrandSlider";
import { Swiper, SwiperSlide } from "swiper/react";
import Banner from "@/src/components/Home/Banner";
import AboutSection from "@/src/components/Home/AboutSection";
import Cards from "@/src/components/Home/Cards";
import FaqArea from "@/src/components/Home/FaqArea";
import CounterSection from "@/src/components/Home/CounterSection";
import { testimonial_list_slider } from "@/src/sliderProps";
import dynamic from "next/dynamic";
import HomeContact from "@/src/components/HomeContact";
import Link from "next/link";
import ServicesSection from "@/src/components/Home/ServicesSection";
import CallToAction from "@/src/components/Home/CallToAction";
import TestimonialSection from "@/src/components/Home/TestimonialSection";
import AboveFooter from "@/src/components/AboveFooter";
import SubCard from "@/src/components/AboveFooter";
import BlogSection from "@/src/components/Home/BlogSection";
import ConsenHead from "@/src/ConsenHead";
const CaseStudies2 = dynamic(
() => import("@/src/components/isotope/CaseStudies2"),
{
ssr: false,
}
);
const Index3 = () => {
return (
<Layout header={3} footer={3}>
<ConsenHead title="Metatroncube: Leaders in Web &amp; Mobile Dev, SEO, Digital Marketing" description="Metatroncube Software Solutions: Your go-to agency for cutting-edge web &amp; app development, SEO, digital marketing, and graphic design services" />
<Banner />
<Cards />
<AboutSection />
<FaqArea />
<ServicesSection />
<BrandSlider />
<CounterSection />
<CallToAction />
<TestimonialSection />
<HomeContact />
{/* End Contact Section */}
<BlogSection />
<SubCard />
</Layout>
);
};
export default Index3;