"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>Highly Structured and Managed Web Applications</h3>
                <p>Angular JS framework with an amazing ability to minimize coding and linking HTML to Java Script objects has helped develop highly structured and managed web applications.</p>
                <p>Angular JS eventually contribute a lot to develop productive and descriptive front ends as its framework is much easier, declarative and offers tremendous level of credibility.</p>
                <p>Angular JS can be used across various platforms including mobile applications and web applications and also helps develop single page applications with two way binding.</p>
                <p>Packed with worthy features like dependency injection, modularity, data binding and backed with our web developers’ experience and expertise, Angular Js becomes the most preferred choice for developers.</p>
              </div>
            </div>

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

export default ServiceDetailsContentTwo;
