vvcc-wad commited on
Commit
a6e3444
·
verified ·
1 Parent(s): 11c92ce

Upload header.html

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