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.

145 lines
7.0 KiB

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