import { Footer } from '@/src/layout/footer/v2';
import { MainHeader } from '@/src/layout/header';
import { SoftwareDev } from '@/src/sections/softwaredev/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 />
      {/* Background Image Section */}
      <div
        className="relative h-[600px] bg-cover bg-center sm:h-[400px] md:h-[500px]"
        style={{ backgroundImage: 'url(/assets/images/service/technology.jpg)' }}
      >
        {/* Headline over the background image */}
        <div className="absolute left-10 top-1/2 z-10 -translate-y-1/2 transform text-left text-white sm:left-6">
          <h1 className="mb-2 font-bold text-2xl sm:text-3xl md:text-4xl lg:text-2xl">
            Technology Stack Expertise
          </h1>
          <h3 className="font-normal text-lg sm:text-xl md:text-xl">
            Deliver and Manage Software Solutions
          </h3>
        </div>
      </div>
      <SoftwareDev />

      {/* <StatisticsSection /> */}

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