"use client";
  
import React from "react";
import Link from "next/link";
import Image from "next/image";

const GameDevelopmentServicesStyleTwo: React.FC = () => {
  return (
    <>
      <div className="services-area multi-service-box pt-100 pb-70 bg-f1f8fb">
        <div className="container">
          <div className="row">
            <div className="col-lg-4 col-md-6 col-sm-6">
              <Link href="/service/game-development/iphone-ipad-game-development/">
                <div className="single-services-box service-card-image">
                  <div className="icon">
                    <Image
                      src="/img/services/service-icon/game-development/iphone-game.svg"
                      alt="image"
                      width={85}
                      height={85}
                    />
                  </div>
                  <h3>
                    iPhone/iPad Game Development
                  </h3>
                  <p>
                    Develop a Cutting-edge Technology Supported by User-friendly
                  </p>

                  <span className="read-more-btn">
                    Read More <i className="flaticon-right"></i>
                  </span>
                </div>
              </Link>
            </div>

            <div className="col-lg-4 col-md-6 col-sm-6">
              <Link href="/service/game-development/android-game-development/">
                <div className="single-services-box service-card-image">
                  <div className="icon">
                    <Image
                      src="/img/services/service-icon/game-development/android-game.svg"
                      alt="image"
                      width={85}
                      height={85}
                    />
                  </div>
                  <h3>
                    Android Game Development
                  </h3>
                  <p>
                    Development with the use of symfony framework
                  </p>

                  <span className="read-more-btn">
                    Read More <i className="flaticon-right"></i>
                  </span>
                </div>
              </Link>
            </div>

            <div className="col-lg-4 col-md-6 col-sm-6">
              <Link href="/service/game-development/window-phone-game-development/">
                <div className="single-services-box service-card-image">
                  <div className="icon">
                    <Image
                      src="/img/services/service-icon/game-development/window-game.svg"
                      alt="image"
                      width={85}
                      height={85}
                    />
                  </div>
                  <h3>
                    Window Phone Game Development
                  </h3>
                  <p>
                    Windows Proves Out to be the Best Gaming Platform
                  </p>

                  <span className="read-more-btn">
                    Read More <i className="flaticon-right"></i>
                  </span>
                </div>
              </Link>
            </div>

            <div className="col-lg-4 col-md-6 col-sm-6">
              <Link href="/service/game-development/unity-game-development/">
                <div className="single-services-box service-card-image">
                  <div className="icon">
                    <Image
                      src="/img/services/service-icon/game-development/unity-game.svg"
                      alt="image"
                      width={85}
                      height={85}
                    />
                  </div>
                  <h3>
                    Unity Game Development
                  </h3>
                  <p>
                    2D and 3D Game Development Framework
                  </p>

                  <span className="read-more-btn">
                    Read More <i className="flaticon-right"></i>
                  </span>
                </div>
              </Link>
            </div>

            <div className="col-lg-4 col-md-6 col-sm-6">
              <Link href="/service/game-development/html5-game-development/">
                <div className="single-services-box service-card-image">
                  <div className="icon">
                    <Image
                      src="/img/services/service-icon/game-development/html-game.svg"
                      alt="image"
                      width={85}
                      height={85}
                    />
                  </div>
                  <h3>
                    HTML5 Game Development
                  </h3>
                  <p>
                    One of the Fastest Growing Mobile Games Development
                  </p>

                  <span className="read-more-btn">
                    Read More <i className="flaticon-right"></i>
                  </span>
                </div>
              </Link>
            </div>

            <div className="col-lg-4 col-md-6 col-sm-6">
              <Link href="/service/game-development/corona-game-development/">
                <div className="single-services-box service-card-image">
                  <div className="icon">
                    <Image
                      src="/img/services/service-icon/game-development/corona-game.svg"
                      alt="image"
                      width={85}
                      height={85}
                    />
                  </div>
                  <h3>
                    Corona Game Development
                  </h3>
                  <p>
                    Development with the use of symfony framework
                  </p>

                  <span className="read-more-btn">
                    Read More <i className="flaticon-right"></i>
                  </span>
                </div>
              </Link>
            </div>

            <div className="col-lg-4 col-md-6 col-sm-6">
              <Link href="/service/game-development/flash-game-development/">
                <div className="single-services-box service-card-image">
                  <div className="icon">
                    <Image
                      src="/img/services/service-icon/game-development/flash-game.svg"
                      alt="image"
                      width={85}
                      height={85}
                    />
                  </div>
                  <h3>
                    Flash Game Development
                  </h3>
                  <p>
                    Develop real time games that make a difference in gaming
                  </p>

                  <span className="read-more-btn">
                    Read More <i className="flaticon-right"></i>
                  </span>
                </div>
              </Link>
            </div>

          </div>
        </div>

        <div className="circle-shape2">
          <Image
            src="/img/shape/circle-shape2.png"
            alt="image"
            width={350}
            height={520}
          />
        </div>
        <div className="lines">
          <div className="line"></div>
          <div className="line"></div>
          <div className="line"></div>
          <div className="line"></div>
          <div className="line"></div>
        </div>
      </div>
    </>
  );
};

export default GameDevelopmentServicesStyleTwo;
