Skip to content

Commit 7e2d669

Browse files
feat: Add professional website with docs, API reference, wiki, and FAQ
- Landing page with hero, features, pricing comparison, integrations - Documentation with installation, configuration, security guides - API reference for OpenAI, Anthropic, Google, Llama endpoints - Wiki with integration guides for LangChain, Cursor, Aider, etc. - FAQ page with expandable accordion - SEO: meta tags, Open Graph, structured data, sitemap - Fully responsive design with mobile-first CSS - GitHub Actions workflow for Pages deployment
1 parent 8ef72c3 commit 7e2d669

11 files changed

Lines changed: 4373 additions & 0 deletions

File tree

.github/workflows/pages.yml

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

website/api.html

Lines changed: 637 additions & 0 deletions
Large diffs are not rendered by default.

website/assets/icon.png

2 KB
Loading

0 commit comments

Comments
 (0)