Skip to content

Commit 9062c23

Browse files
committed
Add GitHub Pages site with Steam-inspired landing page
- docs/index.html: single-page site with hero, stats, features, rules, MCP tools, install steps, example prompts, and roadmap timeline - .github/workflows/pages.yml: deploys docs/ to GitHub Pages on push to main - Steam dark theme (#1b2838, #66c0f4), responsive, scroll animations, copy-to-clipboard Made-with: Cursor
1 parent 940df2f commit 9062c23

2 files changed

Lines changed: 563 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 to GitHub Pages
2+
3+
on:
4+
push:
5+
branches: [main]
6+
paths: [docs/**, assets/**]
7+
workflow_dispatch:
8+
9+
permissions:
10+
pages: write
11+
id-token: write
12+
13+
concurrency:
14+
group: pages
15+
cancel-in-progress: false
16+
17+
jobs:
18+
deploy:
19+
environment:
20+
name: github-pages
21+
url: ${{ steps.deployment.outputs.page_url }}
22+
runs-on: ubuntu-latest
23+
steps:
24+
- uses: actions/checkout@v4
25+
26+
- name: Copy assets into docs for Pages
27+
run: cp -r assets docs/assets
28+
29+
- uses: actions/configure-pages@v5
30+
31+
- uses: actions/upload-pages-artifact@v3
32+
with:
33+
path: docs
34+
35+
- id: deployment
36+
uses: actions/deploy-pages@v4

0 commit comments

Comments
 (0)