Add Github badge
This commit is contained in:
parent
098ad30596
commit
af4400b1f7
2 changed files with 24 additions and 0 deletions
|
|
@ -5,6 +5,7 @@
|
|||

|
||||

|
||||

|
||||
[](https://github.com/scub-france/Docling-Studio)
|
||||
|
||||
A visual document analysis studio powered by [Docling](https://github.com/DS4SD/docling).
|
||||
Upload a PDF, configure the extraction pipeline, and visualize the results — text, tables, images, formulas, bounding boxes — all from your browser.
|
||||
|
|
|
|||
|
|
@ -54,6 +54,18 @@
|
|||
</nav>
|
||||
|
||||
<div class="sidebar-footer">
|
||||
<a
|
||||
class="github-badge"
|
||||
href="https://github.com/scub-france/Docling-Studio"
|
||||
target="_blank"
|
||||
rel="noopener"
|
||||
>
|
||||
<img
|
||||
src="https://img.shields.io/github/stars/scub-france/Docling-Studio?style=social"
|
||||
alt="GitHub Stars"
|
||||
height="20"
|
||||
/>
|
||||
</a>
|
||||
<span class="version">v{{ version }}</span>
|
||||
</div>
|
||||
</aside>
|
||||
|
|
@ -140,6 +152,17 @@ defineProps({
|
|||
overflow: hidden;
|
||||
}
|
||||
|
||||
.github-badge {
|
||||
display: block;
|
||||
margin-bottom: 8px;
|
||||
opacity: 0.7;
|
||||
transition: opacity var(--transition);
|
||||
}
|
||||
|
||||
.github-badge:hover {
|
||||
opacity: 1;
|
||||
}
|
||||
|
||||
.version {
|
||||
font-size: 12px;
|
||||
color: var(--text-muted);
|
||||
|
|
|
|||
Loading…
Reference in a new issue