Skip to content

Commit 42f0e52

Browse files
feat(site): GitHub Pages landing page (#135)
* 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>
1 parent 0ee3cd7 commit 42f0e52

4 files changed

Lines changed: 479 additions & 0 deletions

File tree

.github/workflows/pages.yml

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
name: Deploy landing page
2+
3+
on:
4+
push:
5+
branches: [main]
6+
paths: ['site/**', '.github/workflows/pages.yml']
7+
workflow_dispatch:
8+
9+
permissions:
10+
contents: read
11+
pages: write
12+
id-token: write
13+
14+
# Allow one concurrent deployment; don't cancel an in-progress production deploy.
15+
concurrency:
16+
group: pages
17+
cancel-in-progress: false
18+
19+
jobs:
20+
deploy:
21+
name: Build & deploy to GitHub Pages
22+
runs-on: ubuntu-latest
23+
environment:
24+
name: github-pages
25+
url: ${{ steps.deploy.outputs.page_url }}
26+
steps:
27+
- uses: actions/checkout@v4
28+
29+
- name: Upload site artifact
30+
uses: actions/upload-pages-artifact@v3
31+
with:
32+
path: site
33+
34+
- name: Deploy to GitHub Pages
35+
id: deploy
36+
uses: actions/deploy-pages@v4

site/assets/firecrawl-mark.svg

Lines changed: 3 additions & 0 deletions
Loading

site/assets/firecrawl-wordmark.svg

Lines changed: 12 additions & 0 deletions
Loading

0 commit comments

Comments
 (0)