import { Footer } from '@/src/layout/footer/v2';
import { MainHeader } from '@/src/layout/header';
// import { Consultancy } from '@/src/sections/consultancy/v1';
// import { CtaSection } from '@/src/sections/cta/v1';
import { HeroSection } from '@/src/sections/hero/v3';
import { OthersSection } from '@/src/sections/others';
import { WorkprocessSection } from '@/src/sections/work-process/v1';
// import { StatisticsSection } from '@/src/sections/statistics/v1';
// import { TestimonialSection } from '@/src/sections/testimonial/grid';
import { Metadata } from 'next';

export const metadata: Metadata = {
  title: 'SciTech | Consultancy',
  description: 'SciTech - IT Solutions and Services React Nextjs Template',
};

export default function Page() {
  return (
    <>
      <MainHeader />
      <HeroSection
        title="Others"
        breadcrumbItems={[
          {
            label: 'Home',
            href: '/',
          },
          {
            label: 'Others',
          },
        ]}
      />
      <OthersSection />
      <WorkprocessSection />

      {/* <CtaSection className="section-padding-primary !pt-0" /> */}
      <Footer />
    </>
  );
}
