* feat(site): add GitHub Pages landing page Self-contained landing page (single index.html, no build step) plus a Pages deploy workflow that publishes site/ on push to main. Covers the pitch, install commands for all three registries, feature grid, benchmark, and tabbed quick-start for Rust/Python/Node/CLI. Benchmark numbers mirror the README's current published table; both should be refreshed together in a follow-up. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com> * feat(site): add Firecrawl Parse upsell to closing section Replace the single CTA with a two-path split: run pdf-inspector locally (OSS) vs. hand scanned/OCR/at-scale documents to Firecrawl Parse (hosted). Links the OSS library back to the paid product for the cases local parsing can't cover. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com> * feat(site): add Firecrawl branding (flame mark + wordmark) Firecrawl flame mark anchors the hosted-parse card; charcoal wordmark in the footer credit. Brand SVGs referenced as-is (exact colors). Co-Authored-By: Claude Fable 5 <noreply@anthropic.com> * feat(site): refresh benchmark with current main numbers pdf-inspector row updated from a fresh run on latest main: overall 0.78→0.83, tables 0.59→0.66, headings 0.57→0.74. Now within 0.01 of opendataloader overall, best tables of the group, headings on par. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com> --------- Co-authored-by: Claude Fable 5 <noreply@anthropic.com>
37 lines
771 B
YAML
37 lines
771 B
YAML
name: Deploy landing page
|
|
|
|
on:
|
|
push:
|
|
branches: [main]
|
|
paths: ['site/**', '.github/workflows/pages.yml']
|
|
workflow_dispatch:
|
|
|
|
permissions:
|
|
contents: read
|
|
pages: write
|
|
id-token: write
|
|
|
|
# Allow one concurrent deployment; don't cancel an in-progress production deploy.
|
|
concurrency:
|
|
group: pages
|
|
cancel-in-progress: false
|
|
|
|
jobs:
|
|
deploy:
|
|
name: Build & deploy to GitHub Pages
|
|
runs-on: ubuntu-latest
|
|
environment:
|
|
name: github-pages
|
|
url: ${{ steps.deploy.outputs.page_url }}
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
|
|
- name: Upload site artifact
|
|
uses: actions/upload-pages-artifact@v3
|
|
with:
|
|
path: site
|
|
|
|
- name: Deploy to GitHub Pages
|
|
id: deploy
|
|
uses: actions/deploy-pages@v4
|