header.html 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129
  1. <html><head>
  2. <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.15.4/css/all.css">
  3. <style>
  4. .link-block {
  5. border: 1px solid transparent;
  6. border-radius: 24px;
  7. background-color: rgba(54, 54, 54, 1);
  8. cursor: pointer !important;
  9. }
  10. .link-block:hover {
  11. background-color: rgba(54, 54, 54, 0.75) !important;
  12. cursor: pointer !important;
  13. }
  14. .external-link {
  15. display: inline-flex;
  16. align-items: center;
  17. height: 36px;
  18. line-height: 36px;
  19. padding: 0 16px;
  20. cursor: pointer !important;
  21. }
  22. .external-link,
  23. .external-link:hover {
  24. cursor: pointer !important;
  25. }
  26. a {
  27. text-decoration: none;
  28. }
  29. </style></head>
  30. <body>
  31. <div style="
  32. display: flex;
  33. flex-direction: column;
  34. justify-content: center;
  35. align-items: center;
  36. text-align: center;
  37. background: linear-gradient(45deg, #007bff 0%, #0056b3 100%);
  38. padding: 24px;
  39. gap: 24px;
  40. border-radius: 8px;
  41. ">
  42. <div style="
  43. display: flex;
  44. flex-direction: column;
  45. align-items: center;
  46. gap: 16px;
  47. ">
  48. <div style="display: flex; flex-direction: column; gap: 8px">
  49. <h1 style="
  50. font-size: 48px;
  51. color: #fafafa;
  52. margin: 0;
  53. font-family: 'Trebuchet MS', 'Lucida Sans Unicode',
  54. 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
  55. ">
  56. MinerU 2: PDF Extraction Demo
  57. </h1>
  58. </div>
  59. </div>
  60. <p style="
  61. margin: 0;
  62. line-height: 1.6rem;
  63. font-size: 16px;
  64. color: #fafafa;
  65. opacity: 0.8;
  66. ">
  67. A one-stop, open-source, high-quality data extraction tool that supports converting PDF to Markdown and JSON.<br>
  68. </p>
  69. <style>
  70. .link-block {
  71. display: inline-block;
  72. }
  73. .link-block + .link-block {
  74. margin-left: 20px;
  75. }
  76. </style>
  77. <div class="column has-text-centered">
  78. <div class="publication-links">
  79. <!-- Code Link. -->
  80. <span class="link-block">
  81. <a href="https://github.com/opendatalab/MinerU" class="external-link button is-normal is-rounded is-dark" style="text-decoration: none; cursor: pointer">
  82. <span class="icon" style="margin-right: 4px">
  83. <i class="fab fa-github" style="color: white; margin-right: 4px"></i>
  84. </span>
  85. <span style="color: white">Code</span>
  86. </a>
  87. </span>
  88. <!-- arXiv Link. -->
  89. <span class="link-block">
  90. <a href="https://arxiv.org/abs/2409.18839" class="external-link button is-normal is-rounded is-dark" style="text-decoration: none; cursor: pointer">
  91. <span class="icon" style="margin-right: 8px">
  92. <i class="fas fa-file" style="color: white"></i>
  93. </span>
  94. <span style="color: white">Paper</span>
  95. </a>
  96. </span>
  97. <!-- Homepage Link. -->
  98. <span class="link-block">
  99. <a href="https://mineru.net/home?source=online" class="external-link button is-normal is-rounded is-dark" style="text-decoration: none; cursor: pointer">
  100. <span class="icon" style="margin-right: 8px">
  101. <i class="fas fa-home" style="color: white"></i>
  102. </span>
  103. <span style="color: white">Homepage</span>
  104. </a>
  105. </span>
  106. <!-- Client Link. -->
  107. <span class="link-block">
  108. <a href="https://mineru.net/client?source=online" class="external-link button is-normal is-rounded is-dark" style="text-decoration: none; cursor: pointer">
  109. <span class="icon" style="margin-right: 8px">
  110. <i class="fas fa-download" style="color: white"></i>
  111. </span>
  112. <span style="color: white">Download</span>
  113. </a>
  114. </span>
  115. </div>
  116. </div>
  117. <!-- New Demo Links -->
  118. </div>
  119. </body></html>