"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>Help your business grow successfully and prosperously</h3>
                <p>Webile Technologies e-mail marketing services is an easy and affordable way to send direct e-mails, special offers, monthly newsletters or invitations that help your business grow successfully and prosperously. We provide a comprehensive set of e-mail marketing tolls that include everything right from creating e-mails, sending e-mails, tracking e-mails and gaining profit from them. We built a fully-featured automated marketing software that help turn your potential buyers into loyal and regular customers.</p>
                <p>We help our customers with the creation of professional mails through customizable templates wherein they can add text, images, colors, and social buttons to create effective emails. As an additional advantage we also provide responsive templates which are compatible to almost all types of devices and are mobile friendly. The templates automatically adapt to the users screen size.</p>
                <p>We focus towards automating follow ups through:</p>
                <div className="content">
                  <ul>
                    <li><i className="bx bx-check"></i> Easily sending of a series of personalized e-mails to new leads.</li>
                    <li><i className="bx bx-check"></i> Removal of invalid email addresses from the lists with the help of automated bounce processing</li>
                    <li><i className="bx bx-check"></i> Automatic conversion of leads into opportunities when a lead opens the email.</li>
                    <li><i className="bx bx-check"></i> Helps in tracking the feedback through surveys which can later be linked to the e-mail campaigns.</li>
                  </ul>
                </div>
              </div>
            </div>

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

export default ServiceDetailsContent;
