Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.

162 rindas
7.3 KiB

  1. import React from 'react';
  2. import Link from 'next/link';
  3. import * as Icon from 'react-feather';
  4. const Footer = () => {
  5. const currentYear = new Date().getFullYear();
  6. return (
  7. <footer className="footer-area bg-f7fafd">
  8. <div className="container">
  9. <div className="row">
  10. <div className="col-lg-3 col-md-6">
  11. <div className="single-footer-widget">
  12. <div className="logo">
  13. <Link href="/it-startup">
  14. <a>
  15. <img src="/images/Home/businees/ThamrinBrothers.png" width="200px" alt="logo" />
  16. </a>
  17. </Link>
  18. </div>
  19. <p>Thamrin Group adalah perusahaan terkemuka di Sumatera Selatan & Bengkulu dengan fokus bisnis pada sektor otomotif dan properti.</p>
  20. </div>
  21. </div>
  22. <div className="col-lg-3 col-md-6">
  23. <div className="single-footer-widget pl-5">
  24. <h3>Menu</h3>
  25. <ul className="list">
  26. <li>
  27. <Link href="/yamaha">
  28. <a>Home</a>
  29. </Link>
  30. </li>
  31. <li>
  32. <Link href="/yamaha/Product/Motor">
  33. <a>Product</a>
  34. </Link>
  35. </li>
  36. <li>
  37. <Link href="/yamaha/LatestNews">
  38. <a>Latest News</a>
  39. </Link>
  40. </li>
  41. {/* <li>
  42. <Link href="/pricing">
  43. <a>Carrer</a>
  44. </Link>
  45. </li> */}
  46. <li>
  47. <Link href="/yamaha/AboutUs">
  48. <a>About Us</a>
  49. </Link>
  50. </li>
  51. <li>
  52. <Link href="/yamaha/ContactUs">
  53. <a>Contact Us</a>
  54. </Link>
  55. </li>
  56. </ul>
  57. </div>
  58. </div>
  59. {/* <div className="col-lg-3 col-md-6">
  60. <div className="single-footer-widget">
  61. <h3>Support</h3>
  62. <ul className="list">
  63. <li>
  64. <Link href="/faq">
  65. <a>FAQ's</a>
  66. </Link>
  67. </li>
  68. <li>
  69. <Link href="/privacy-policy">
  70. <a>Privacy Policy</a>
  71. </Link>
  72. </li>
  73. <li>
  74. <Link href="/term-condition">
  75. <a>Terms & Condition</a>
  76. </Link>
  77. </li>
  78. <li>
  79. <Link href="/team">
  80. <a>Team</a>
  81. </Link>
  82. </li>
  83. <li>
  84. <Link href="/yamaha/ContactUs">
  85. <a>Contact Us</a>
  86. </Link>
  87. </li>
  88. </ul>
  89. </div>
  90. </div> */}
  91. <div className="col-lg-6 col-md-6">
  92. <div className="single-footer-widget">
  93. <h3>Address</h3>
  94. <ul className="footer-contact-info">
  95. <li>
  96. <Icon.MapPin />
  97. JL. KS Tubun, No. 81 A 17 Ilir Kecamatan Ilir Timur I Kota Palembang, Sumatera Selatan 30111, Sumatera Selatan 30113
  98. </li>
  99. <li>
  100. <Icon.Mail />
  101. Email: <a href="mailto:thamrin@gmail.co.id">thamrin@gmail.co.id</a>
  102. </li>
  103. <li>
  104. <Icon.PhoneCall />
  105. Phone: <a href="tel:321984754">+ (321) 984 754</a>
  106. </li>
  107. </ul>
  108. <ul className="social-links">
  109. <li>
  110. <Link href="https://www.facebook.com/thamrin.group">
  111. <a className="facebook" target="_blank"><Icon.Facebook /></a>
  112. </Link>
  113. </li>
  114. <li>
  115. <Link href="https://twitter.com/ThamrinGroup">
  116. <a className="twitter" target="_blank"><Icon.Twitter /></a>
  117. </Link>
  118. </li>
  119. <li>
  120. <Link href="https://www.instagram.com/thamrin.co.id/">
  121. <a className="instagram" target="_blank"><Icon.Instagram /></a>
  122. </Link>
  123. </li>
  124. <li>
  125. <Link href="https://www.youtube.com/channel/UCRUULlhLxKUpXK1Ti4Jrjkw">
  126. <a className="youtube" target="_blank"><Icon.Youtube /></a>
  127. </Link>
  128. </li>
  129. </ul>
  130. </div>
  131. </div>
  132. <div className="col-lg-12 col-md-12">
  133. <div className="copyright-area">
  134. <p>Copyright &copy; {currentYear} All Right Reserved by <a href="https://thamrin.xyz/" target="_blank">@Thamrin Brothers </a></p>
  135. </div>
  136. </div>
  137. </div>
  138. </div>
  139. <img src="/images/map.png" className="map" alt="map" />
  140. {/* Shape Images */}
  141. <div className="shape1">
  142. <img src="/images/shape1.png" alt="shape" />
  143. </div>
  144. <div className="shape8 rotateme">
  145. <img src="/images/shape2.svg" alt="shape" />
  146. </div>
  147. </footer>
  148. )
  149. }
  150. export default Footer;