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

const ServiceDetailsContentTwo: 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>Open Source Cross Platform</h3>
                <p>Node.Js is an open source cross platform web framework which is adapted for developing server side web applications.</p>
                <p>It is written in Java Script and can be run on software like- Microsoft Windows, IBM, Linux etc. Our power packed pool of web developers work towards adopting node.js framework in order to optimize the usability and scalability of an application for real-time web application.</p>
                <p>Node.js consists of an in-built library which allows creating web servers that are highly scalable and make use of a non-blocking language.</p>
              </div>
            </div>

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

export default ServiceDetailsContentTwo;
