Skip to content

Commit 04c63d7

Browse files
committed
✨ feat: add SkCC landing page with benchmark leaderboard
- Deep space theme with particle background - Hero section with gradient text and stats - Problem/Solution narrative with O(m×n)→O(m+n) visualization - Four-phase compilation pipeline diagram - Feature cards grid (6 features) - Benchmark leaderboard with SkillsBench data - Ablation study results table - Installation quick-start (npm/cargo/source) - GitHub Pages deployment via Actions - CNAME for skcc.nexa-lang.com
1 parent b64cd2b commit 04c63d7

3 files changed

Lines changed: 468 additions & 0 deletions

File tree

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/CNAME

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
skcc.nexa-lang.com

0 commit comments

Comments
 (0)