You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

67 lines
2.9 KiB

  1. import React from 'react';
  2. import Link from 'next/link';
  3. import * as Icon from 'react-feather';
  4. const OurServices = () => {
  5. return (
  6. <div className="iot-services-area pt-80 pb-50">
  7. <div className="container justify-content-center">
  8. <div className="section-title">
  9. <h2>Yamaha 3S Service</h2>
  10. <div className="bar"></div>
  11. <p>Yamaha 3S Service merupakan pelayanan dari Yamaha untuk meningkatkan kupuasan pelanggan Yamaha</p>
  12. </div>
  13. <div className="row">
  14. <div className="col-lg-4 col-md-6">
  15. <div className="single-repair-servicesss bg1">
  16. <div className="icon">
  17. <i className="flaticon-gear"></i>
  18. </div>
  19. <h3>Selling <br /> Yamaha Product Selling</h3>
  20. {/* <p>Lorem ipsum eiusmod dolor sit amet elit, adipiscing, sed do eiusmod tempor incididunt ut labore dolore magna aliqua.</p> */}
  21. <Link href="Product/Motor">
  22. <a><Icon.ArrowRight /></a>
  23. </Link>
  24. </div>
  25. </div>
  26. <div className="col-lg-4 col-md-6">
  27. <div className="single-repair-servicesss bg10">
  28. <div className="icon">
  29. <i className="flaticon-gear"></i>
  30. </div>
  31. <h3>Services <br /> Yamaha Services Product</h3>
  32. {/* <p>Lorem ipsum eiusmod dolor sit amet elit, adipiscing, sed do eiusmod tempor incididunt ut labore dolore magna aliqua.</p> */}
  33. <Link href="/service-details">
  34. <a><Icon.ArrowRight /></a>
  35. </Link>
  36. </div>
  37. </div>
  38. <div className="col-lg-4 col-md-6">
  39. <div className="single-repair-servicesss bg11">
  40. <div className="icon">
  41. <i className="flaticon-gear"></i>
  42. </div>
  43. <h3>Sparepart <br />Yamaha Sparepart Product</h3>
  44. {/* <p>Lorem ipsum eiusmod dolor sit amet elit, adipiscing, sed do eiusmod tempor incididunt ut labore dolore magna aliqua.</p> */}
  45. <Link href="/service-details">
  46. <a><Icon.ArrowRight /></a>
  47. </Link>
  48. </div>
  49. </div>
  50. </div>
  51. </div>
  52. </div>
  53. );
  54. }
  55. export default OurServices;