import { Footer } from '@/src/layout/footer/v2';
import { MainHeader } from '@/src/layout/header';
import { Ham } from '@/src/sections/ham';
// import { HeroSection } from '@/src/sections/hero/v3';
// import { Integration } from '@/src/sections/integration';
// import { Itbm } from '@/src/sections/itbm';

// import { ServiceDetailsSection } from '@/src/sections/service-details/v1';

import { Metadata } from 'next';

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

export default function Page() {
  return (
    <>
      <MainHeader />
      {/* Background Image Section */}
      {/* Background Image Section */}
      <div
        className="relative h-[600px] bg-cover bg-center sm:h-[400px] md:h-[500px]"
        style={{
          backgroundImage: 'url(/assets/images/service/itam.png)',
        }}
      >
        {/* 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 text-2xl font-bold sm:text-3xl md:text-4xl lg:text-2xl">
            IT Asset management
          </h1>
          <h3 className=" text-lg font-normal sm:text-xl md:text-xl">
            Leverage Real-Time Insights to Align Your IT Assets with Business
            Goals
          </h3>
        </div>
      </div>
      <Ham />
      <Footer />
    </>
  );
}
