"use client";
  
import React from "react";
import ServiceSidebar from "./ServiceSidebar";
import ServicesImageSlider from "./ServicesImageSlider";

const ServiceDetailsContent: React.FC = () => {
  return (
    <>
      <div className="services-details-area ptb-100">
        <div className="container">
          <div className="row">
            <div className="col-lg-8 col-md-12">
              <ServicesImageSlider />

              <div className="services-details-desc service-inner-content">
                <h3>We converted PSD to HTML design with pixel perfect</h3>
                <p>A well-planned layout design is a prerequisite for developing a site in order to make highly functional and flexible websites.</p>
                <p>A perfectly planned design helps the developers to recreate the exact version of the website which is thought by the company or designer. The process of <b>PSD to HTML conversion</b> is very effective and is followed when developing a website design.</p>
                <p>We at <b>Webile technologies</b> make sure that the converted PSD to HTML project is logical, strategic, responsive and compliant to the standards. We believe that every customer deserves the best <b>PSD to HTML code conversion</b> to fulfil his goal.</p>
              </div>
            </div>

            <div className="col-lg-4 col-md-12">
              <ServiceSidebar />
            </div>
          </div>
        </div>
      </div>
    </>
  );
};

export default ServiceDetailsContent;
