import { Footer } from '@/src/layout/footer/v2';
import { MainHeader } from '@/src/layout/header';

import { Integration } from '@/src/sections/integration';

// 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 */}
      <div
        className="relative h-[600px] bg-cover bg-center sm:h-[400px] md:h-[500px]"
        style={{
          backgroundImage: 'url(/assets/images/service/integration.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">
            ServiceNow Integration
          </h1>
          <h3 className="text-lg font-normal sm:text-xl md:text-xl">
            Seamlessly Connect Your Business Ecosystem with ServiceNow
            Integration
          </h3>
        </div>
      </div>
      <Integration />
      <Footer />
    </>
  );
}
