Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
34 changes: 33 additions & 1 deletion site/astro.config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -186,7 +186,7 @@ export default defineConfig({
tag: 'meta',
attrs: {
name: 'keywords',
content: 'PDF parser, PDF extraction, Rust PDF, structured data, RAG pipeline, table extraction, reading order, Python PDF, Node.js PDF, edgeparse, open source',
content: 'PDF parser, PDF extraction, Rust PDF, structured data, RAG pipeline, table extraction, reading order, Python PDF, Node.js PDF, edgeparse, open source, AI agent, PDF to JSON, PDF to markdown, WebAssembly PDF, agent skill, LLM documents',
},
},
{
Expand All @@ -196,6 +196,14 @@ export default defineConfig({
content: 'index, follow',
},
},
// og:url — canonical URL for social sharing
{
tag: 'meta',
attrs: {
property: 'og:url',
content: siteUrl,
},
},
// NOTE: canonical is handled per-page by Starlight; do not set a global one.
// JSON-LD: SoftwareApplication
{
Expand Down Expand Up @@ -311,9 +319,26 @@ export default defineConfig({
itemListElement: [
{ '@type': 'ListItem', position: 1, name: 'EdgeParse', item: fullUrl },
{ '@type': 'ListItem', position: 2, name: 'Documentation', item: `${fullUrl}/getting-started/quick-start-python/` },
{ '@type': 'ListItem', position: 3, name: 'Contact', item: `${fullUrl}/contact/` },
],
}),
},
// JSON-LD: ContactPage
{
tag: 'script',
attrs: { type: 'application/ld+json' },
content: JSON.stringify({
'@context': 'https://schema.org',
'@type': 'ContactPage',
name: 'Contact EdgeParse',
url: `${fullUrl}/contact/`,
description: 'Contact the EdgeParse team via email, GitHub Discussions, or Elitizon for enterprise engagements.',
contactType: 'customer support',
email: 'contact@elitizon.com',
areaServed: 'Worldwide',
availableLanguage: 'English',
}),
},
],
sidebar: [
{
Expand Down Expand Up @@ -388,6 +413,13 @@ export default defineConfig({
{ label: 'Changelog', slug: 'changelog' },
],
},
{
label: 'More',
items: [
{ label: 'Enterprise', slug: 'enterprise' },
{ label: 'Contact', slug: 'contact' },
],
},
],
}),
],
Expand Down
6 changes: 3 additions & 3 deletions site/src/components/enterprise/EnterpriseContent.astro
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ const base = import.meta.env.BASE_URL;

</div>

<a href="https://elitizon.com/" target="_blank" rel="noopener noreferrer" class="ent-cta-button">
<a href="/contact/" class="ent-cta-button">
Talk to the Team
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor" width="16" height="16" aria-hidden="true">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M13.5 4.5 21 12m0 0-7.5 7.5M21 12H3"/>
Expand Down Expand Up @@ -176,8 +176,8 @@ const base = import.meta.env.BASE_URL;
<strong>Live demo</strong>
<span>Try EdgeParse in your browser — no install, no server, pure WebAssembly.</span>
</a>
<a href="https://www.elitizon.com/" target="_blank" rel="noopener noreferrer" class="ent-link-card">
<strong>Implementation support</strong>
<a href="/contact/" class="ent-link-card">
<strong>Contact &amp; support</strong>
<span>Talk to the team about architecture reviews, rollout planning, or custom integration work.</span>
</a>
</div>
Expand Down
Loading