docs: add GitHub Pages landing page with features showcase

This commit is contained in:
Nicolas Varrot
2026-02-11 17:36:04 +00:00
parent ee5d870f06
commit 4f47732fa0
3 changed files with 396 additions and 0 deletions

38
.github/workflows/pages.yml vendored Normal file
View File

@@ -0,0 +1,38 @@
name: Deploy GitHub Pages
on:
push:
branches: [main]
paths:
- 'docs/**'
workflow_dispatch:
permissions:
contents: read
pages: write
id-token: write
concurrency:
group: pages
cancel-in-progress: true
jobs:
deploy:
runs-on: ubuntu-latest
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
steps:
- uses: actions/checkout@v4
- name: Setup Pages
uses: actions/configure-pages@v5
- name: Upload artifact
uses: actions/upload-pages-artifact@v3
with:
path: docs
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4