您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
 
 

44 行
1.6 KiB

  1. import React from 'react';
  2. import Link from 'next/link';
  3. const MainBanner = () => {
  4. return (
  5. <div className="iot-main-banner">
  6. <div className="container">
  7. <div className="iot-banner-content">
  8. <span>Internet of Things</span>
  9. <h2>We get it! IoT growth is happening</h2>
  10. <p>At this point, it may seem like overkill to point out the continued growth bound to happen in the Internet of Things space for the years to come and how it will create new opportunities for companies, both established and new, from a hardware and software perspective.</p>
  11. <Link href="/contact">
  12. <a className="btn btn-primary">Get Started</a>
  13. </Link>
  14. </div>
  15. <div className="iot-banner-image">
  16. <img
  17. src='/images/iot-banner-image/iot-main-img1.png'
  18. className="animate__animated animate__fadeInUp animate__delay-0.8s"
  19. alt="image"
  20. />
  21. <img
  22. src='/images/iot-banner-image/iot-shape1.png'
  23. className="animate__animated animate__zoomIn"
  24. alt="image"
  25. />
  26. </div>
  27. <div className="animate-border">
  28. <span></span>
  29. <span></span>
  30. <span></span>
  31. <span></span>
  32. </div>
  33. </div>
  34. </div>
  35. );
  36. }
  37. export default MainBanner;