Skip to content

Commit f4b71de

Browse files
committed
feat(site): add demo and Elitizon links across the site
1 parent f527033 commit f4b71de

7 files changed

Lines changed: 45 additions & 2 deletions

File tree

site/src/components/enterprise/EnterpriseContent.astro

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -172,7 +172,11 @@ const base = import.meta.env.BASE_URL;
172172
<strong>Docker deployment</strong>
173173
<span>Run EdgeParse in containers with pre-built images.</span>
174174
</a>
175-
<a href="https://elitizon.com/" target="_blank" rel="noopener noreferrer" class="ent-link-card">
175+
<a href="/demo/" class="ent-link-card">
176+
<strong>Live demo</strong>
177+
<span>Try EdgeParse in your browser — no install, no server, pure WebAssembly.</span>
178+
</a>
179+
<a href="https://www.elitizon.com/" target="_blank" rel="noopener noreferrer" class="ent-link-card">
176180
<strong>Implementation support</strong>
177181
<span>Talk to the team about architecture reviews, rollout planning, or custom integration work.</span>
178182
</a>

site/src/components/landing/CtaSection.astro

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,13 +28,23 @@ const base = import.meta.env.BASE_URL;
2828
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M13.5 4.5 21 12m0 0-7.5 7.5M21 12H3" />
2929
</svg>
3030
</a>
31+
<a href="/demo/" class="btn-secondary">
32+
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor" width="16" height="16" aria-hidden="true">
33+
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="1.5" d="M5.25 5.653c0-.856.917-1.398 1.667-.986l11.54 6.347a1.125 1.125 0 0 1 0 1.972l-11.54 6.347a1.125 1.125 0 0 1-1.667-.986V5.653Z" />
34+
</svg>
35+
Try Live Demo
36+
</a>
3137
<a href={secondaryHref} target="_blank" rel="noopener noreferrer" class="btn-secondary">
3238
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" fill="currentColor" width="16" height="16" aria-hidden="true">
3339
<path d="M8 0C3.58 0 0 3.58 0 8c0 3.54 2.29 6.53 5.47 7.59.4.07.55-.17.55-.38 0-.19-.01-.82-.01-1.49-2.01.37-2.53-.49-2.69-.94-.09-.23-.48-.94-.82-1.13-.28-.15-.68-.52-.01-.53.63-.01 1.08.58 1.23.82.72 1.21 1.87.87 2.33.66.07-.52.28-.87.51-1.07-1.78-.2-3.64-.89-3.64-3.95 0-.87.31-1.59.82-2.15-.08-.2-.36-1.02.08-2.12 0 0 .67-.21 2.2.82.64-.18 1.32-.27 2-.27.68 0 1.36.09 2 .27 1.53-1.04 2.2-.82 2.2-.82.44 1.1.16 1.92.08 2.12.51.56.82 1.27.82 2.15 0 3.07-1.87 3.75-3.65 3.95.29.25.54.73.54 1.48 0 1.07-.01 1.93-.01 2.2 0 .21.15.46.55.38A8.013 8.013 0 0 0 16 8c0-4.42-3.58-8-8-8Z" />
3440
</svg>
3541
{secondaryText}
3642
</a>
3743
</div>
44+
45+
<p class="cta-enterprise">
46+
Enterprise deployment? <a href="https://www.elitizon.com/" target="_blank" rel="noopener noreferrer">Talk to Elitizon</a> about architecture reviews and production rollouts.
47+
</p>
3848
</section>
3949

4050
<style>
@@ -124,4 +134,20 @@ const base = import.meta.env.BASE_URL;
124134
.cta-actions { flex-direction: column; align-items: center; }
125135
.btn-primary, .btn-secondary { width: 100%; max-width: 280px; justify-content: center; }
126136
}
137+
138+
.cta-enterprise {
139+
margin-top: 2rem;
140+
font-size: 0.9rem;
141+
color: var(--ep-text-secondary, #4B5563);
142+
}
143+
144+
.cta-enterprise a {
145+
color: var(--sl-color-accent, #4F46E5);
146+
font-weight: 600;
147+
text-decoration: none;
148+
}
149+
150+
.cta-enterprise a:hover {
151+
text-decoration: underline;
152+
}
127153
</style>

site/src/content/docs/benchmark/results.mdx

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,3 +38,8 @@ description: "EdgeParse vs 6 PDF parsers on 200 documents. NID, TEDS, MHS scores
3838
- **Corpus:** 200 diverse PDF documents
3939
- **Mode:** Single-threaded
4040
- **Categories:** Academic papers, financial reports, invoices, government forms, books, manuals
41+
42+
## See It in Action
43+
44+
- [Try Live Demo](/demo/) — parse any PDF in your browser with WebAssembly, no install needed
45+
- [Enterprise](/enterprise/) — production-grade deployment with priority support by [Elitizon](https://www.elitizon.com/)

site/src/content/docs/getting-started/quick-start-cli.mdx

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -76,3 +76,5 @@ edgeparse document.pdf -f json --hybrid docling-fast
7676

7777
- [Output Format Details](/output/json-schema/)
7878
- [Rust Library Usage](/getting-started/quick-start-rust/)
79+
- [Try Live Demo](/demo/) — parse PDFs in your browser with WebAssembly
80+
- [Enterprise](/enterprise/) — self-hosted deployment, priority support by [Elitizon](https://www.elitizon.com/)

site/src/content/docs/getting-started/quick-start-nodejs.mdx

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -52,3 +52,5 @@ const result = convert("document.pdf", {
5252

5353
- [JSON Schema Reference](/output/json-schema/)
5454
- [Benchmark Results](/benchmark/results/)
55+
- [Try Live Demo](/demo/) — parse PDFs in your browser with WebAssembly
56+
- [Enterprise](/enterprise/) — self-hosted deployment, priority support by [Elitizon](https://www.elitizon.com/)

site/src/content/docs/getting-started/quick-start-python.mdx

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,4 +49,6 @@ print(f"Saved to: {out_path}")
4949
## Next Steps
5050

5151
- [JSON Schema Reference](/output/json-schema/) — understand every field
52-
- [Benchmark Results](/benchmark/results/) — accuracy &amp; speed data
52+
- [Benchmark Results](/benchmark/results/) — accuracy & speed data
53+
- [Try Live Demo](/demo/) — parse PDFs in your browser with WebAssembly
54+
- [Enterprise](/enterprise/) — self-hosted deployment, priority support by [Elitizon](https://www.elitizon.com/)

site/src/content/docs/getting-started/quick-start-rust.mdx

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -60,3 +60,5 @@ fn main() -> anyhow::Result<()> {
6060

6161
- [Architecture](/contributing/architecture/)
6262
- [JSON Schema Reference](/output/json-schema/)
63+
- [Try Live Demo](/demo/) — parse PDFs in your browser with WebAssembly
64+
- [Enterprise](/enterprise/) — self-hosted deployment, priority support by [Elitizon](https://www.elitizon.com/)

0 commit comments

Comments
 (0)