53 lines
1.8 KiB
JavaScript
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="Best Website Development & SEO Services-MetatronCube India" description="MetatronCube India offers expert website development, mobile apps, SEO, digital marketing, & UI/UX design services to grow your business online." />
|
|
<Banner />
|
|
<Cards />
|
|
<AboutSection />
|
|
<FaqArea />
|
|
<ServicesSection />
|
|
<BrandSlider />
|
|
<CounterSection />
|
|
<CallToAction />
|
|
<TestimonialSection />
|
|
<HomeContact />
|
|
{/* End Contact Section */}
|
|
<BlogSection />
|
|
|
|
<SubCard />
|
|
</Layout>
|
|
);
|
|
};
|
|
export default Index3;
|