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.

147 lines
7.1 KiB

  1. import { Link } from '@inertiajs/react';
  2. import { HelpCircle } from 'react-feather';
  3. export default function Footer() {
  4. return (
  5. <div id="Footer">
  6. <div id="copyright" className="navbar px-4 bg-primary-background border-b border-t border-secondary-main">
  7. <div id="licenses" className="navbar-start">
  8. <ul className="menu menu-horizontal px-1">
  9. <li>
  10. <Link
  11. href="/privacy-policy"
  12. className="btn btn-link font-normal text-base leading-4 text-secondary-main">
  13. Privacy Policy
  14. </Link>
  15. </li>
  16. <li>
  17. <Link
  18. href="/terms-of-use"
  19. className="btn btn-link font-normal text-base leading-4 text-secondary-main">
  20. Terms of Use
  21. </Link>
  22. </li>
  23. </ul>
  24. </div>
  25. <div id="copyright-notice" className="navbar-end">
  26. <p className="font-light text-sm leading-4">Copyright © 2024 DOST. All rights reserved.</p>
  27. <Link href="/help">
  28. <div id="btn-help" className="btn transition rounded-badge mx-4 bg-info-background border border-info-border hover:bg-info-focus hover:border-info-border active:bg-info-focus active:border-info-focus px-4 py-2 text-info-main">
  29. {/* <img src="./assets/images/icons/ico-help.png" alt="Help Icon" width="20" height="20" /> */}
  30. <HelpCircle className='stroke-[#0065C1]' />
  31. <span className="font-semibold text-sm leading-5">Help</span>
  32. </div>
  33. </Link>
  34. </div>
  35. </div>
  36. <div id="gov-info" className="py-4 flex justify-between pl-6 pr-24 bg-[#F0F0F0]">
  37. <section id="seal">
  38. <img src="./assets/images/img-philippineSeal.png" alt="Philippine Seal" width="230" height="230" />
  39. </section>
  40. <section id="disclaimer">
  41. <h3 className="font-normal text-base leading-5">REPUBLIC OF THE PHILIPPINES</h3>
  42. <p className="font-light text-sm leading-5">All content is in the public domain unless<br />otherwise stated.</p>
  43. </section>
  44. <section id="gov-ph">
  45. <h3 className="font-normal text-base leading-5">ABOUT GOVPH</h3>
  46. <p className="font-light text-sm leading-5">Learn more about the Philippine government,
  47. <br />its structure, how government works
  48. <br />and the people behind it.
  49. </p>
  50. <br />
  51. <ul>
  52. <li>
  53. <a href="https://www.gov.ph/"
  54. target="_blank"
  55. rel="noopener noreferrer"
  56. className="font-light text-sm leading-5">
  57. GOV.PH
  58. </a>
  59. </li>
  60. <li>
  61. <a href="http://www.gov.ph/data"
  62. target="_blank"
  63. rel="noopener noreferrer"
  64. className="font-light text-sm leading-5">
  65. Open Data Portal
  66. </a>
  67. </li>
  68. <li>
  69. <a href="https://www.officialgazette.gov.ph/"
  70. target="_blank"
  71. rel="noopener noreferrer"
  72. className="font-light text-sm leading-5">
  73. Official Gazette
  74. </a>
  75. </li>
  76. </ul>
  77. </section>
  78. <section id="gov-links">
  79. <h3 className="font-normal text-base leading-5">GOVERNMENT LINKS</h3>
  80. <ul>
  81. <li>
  82. <a href="http://op-proper.gov.ph/"
  83. target="_blank"
  84. rel="noopener noreferrer"
  85. className="font-light text-sm leading-5">
  86. Office of the President
  87. </a>
  88. </li>
  89. <li>
  90. <a href="https://ovp.gov.ph/"
  91. target="_blank"
  92. rel="noopener noreferrer"
  93. className="font-light text-sm leading-5">
  94. Office of the Vice President
  95. </a>
  96. </li>
  97. <li>
  98. <a href="http://senate.gov.ph/"
  99. target="_blank"
  100. rel="noopener noreferrer"
  101. className="font-light text-sm leading-5">
  102. Senate of the Philippines
  103. </a>
  104. </li>
  105. <li>
  106. <a href="http://www.congress.gov.ph/"
  107. target="_blank"
  108. rel="noopener noreferrer"
  109. className="font-light text-sm leading-5">
  110. House of Representatives
  111. </a>
  112. </li>
  113. <li>
  114. <a href="http://sc.judiciary.gov.ph/"
  115. target="_blank"
  116. rel="noopener noreferrer"
  117. className="font-light text-sm leading-5">
  118. Supreme Court
  119. </a>
  120. </li>
  121. <li>
  122. <a href="http://ca.judiciary.gov.ph/"
  123. target="_blank"
  124. rel="noopener noreferrer"
  125. className="font-light text-sm leading-5">
  126. Court of Appeals
  127. </a>
  128. </li>
  129. <li>
  130. <a href="http://sb.judiciary.gov.ph/"
  131. target="_blank"
  132. rel="noopener noreferrer"
  133. className="font-light text-sm leading-5">
  134. Sandiganbayan
  135. </a>
  136. </li>
  137. </ul>
  138. </section>
  139. </div>
  140. </div>
  141. )
  142. }