Skip to content

Commit 1d70bb2

Browse files
plebclaude
andcommitted
feat: add GitHub Pages landing page and deployment workflow
Created docs/index.html with animated landing page — floating orbs, shimmer gradients, stats ribbon, terminal demo, API endpoints, architecture section. Added pages.yml workflow for automated deployment from docs/ folder. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
1 parent 9557ead commit 1d70bb2

2 files changed

Lines changed: 1210 additions & 0 deletions

File tree

.github/workflows/pages.yml

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

0 commit comments

Comments
 (0)