Skip to content

Commit 1dbd4df

Browse files
ashley liashley li
authored andcommitted
feat(blog): add blog section with 10 SEO-optimized articles + GitHub Pages deploy
- 10 articles: 2 Announcements, 4 Guides (incl. pillar page + 2 commercial intent), 4 Use Cases - Keyword-optimized titles, bilingual EN/ZH content, hash-based routing - Internal linking network between all articles - Product screenshots integrated into guides and use cases - GitHub Actions workflow for deploying site/ to GitHub Pages Made-with: Cursor
1 parent 8cbd506 commit 1dbd4df

22 files changed

Lines changed: 791 additions & 0 deletions

.github/workflows/deploy.yml

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
name: Deploy to GitHub Pages
2+
3+
on:
4+
push:
5+
branches: [main]
6+
workflow_dispatch:
7+
8+
permissions:
9+
contents: read
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+
- uses: actions/configure-pages@v5
26+
- uses: actions/upload-pages-artifact@v3
27+
with:
28+
path: site
29+
- id: deployment
30+
uses: actions/deploy-pages@v4

site/blog.html

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

site/img/blog-content.png

1.16 MB
Loading

site/img/blog-dev.png

1.05 MB
Loading

site/img/blog-ecommerce.png

1.1 MB
Loading

site/img/blog-featured.png

977 KB
Loading

site/img/blog-guide.png

920 KB
Loading

site/img/blog-legal.png

1.2 MB
Loading

site/img/blog-skills-guide.png

1.23 MB
Loading

site/img/blog-tools-comparison.png

1.25 MB
Loading

0 commit comments

Comments
 (0)