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

const PaymentGatewayServiceDetailsContent: 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>Easy and Convenient Payment Gateway Integration</h3>
                <p>Online payment has become so common and demanding now a days and thus at <b>Webile Technologies</b>, we understand the importance of safe and secured payment transactions. To deal with inconvenient and inaccessible payment experiences people undergo, we come up as a trusted source for maintaining actual payment records of companies and help them with easy and convenient <b>payment gateway integration</b>. With years of experience in creation and implementation of APIs for various platforms, we at <b>Webile Technologies</b>, hold the capability to integrate payment gateways for existing as well as future websites.</p>
                <p>We are engaged in delivering fastest and accurate payment integration services that focus on development and integration of interface design at large. We focus on simplifying the payment experience of a user and thus focus on designing simple and easy to use payment systems pertaining to local languages. Our payment gateways are designed in a way to suit almost every mobile platform.</p>
                <p>We usually work with some famous payment gateways like Authorize. Net and Paypal which are trusted sources for hassle-free payment. Authorize.net easily supports electronic check processing and is efficient to handle multiple transactions. Paypal is another e-Commerce based payment gateway which is easy to access and requires easy steps to make payments.</p>
              </div>
            </div>

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

export default PaymentGatewayServiceDetailsContent;
