Skip to content

Commit 4b4586d

Browse files
authored
feat: initialize Astro website and implement SEO improvements (#5)
* feat: Introduce comprehensive documentation for animations, components, technical stack, and design system along with related project files. * feat: Initialize Astro website with core pages, components, a dedicated games section, and GitHub Pages deployment. * style: Replace sun icon with dragon emoji and relocate dragon trigger to theme toggle button. * refactor: Move custom cursor script from index page to base layout. * feat: Migrate website to Astro, add new components, and update development environment permissions. * feat: Implement SEO improvements with sitemap, robots.txt, enhanced meta tags, and updated game iframe paths. * feat: add Projects Showcase Section with detailed project cards to the design file. * ci: remove CodeQL analysis workflow.
1 parent daf693b commit 4b4586d

180 files changed

Lines changed: 22560 additions & 405 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.claude/settings.local.json

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
{
2+
"permissions": {
3+
"allow": [
4+
"WebFetch(domain:bio.link)",
5+
"WebFetch(domain:github.com)",
6+
"Bash(wc:*)",
7+
"Bash(npm search:*)",
8+
"Bash(npm run build:*)",
9+
"Bash(npm uninstall:*)",
10+
"Bash(lsof:*)",
11+
"Bash(xargs:*)",
12+
"WebSearch",
13+
"WebFetch(domain:phaserjs.github.io)",
14+
"Bash(ls:*)",
15+
"Bash(npm install:*)",
16+
"Bash(identify:*)",
17+
"Bash(grep:*)"
18+
]
19+
}
20+
}

.github/workflows/codeql-analysis.yml

Lines changed: 0 additions & 52 deletions
This file was deleted.

.github/workflows/deploy.yml

Lines changed: 67 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,67 @@
1+
name: Deploy to GitHub Pages
2+
3+
on:
4+
# Trigger on push to master branch
5+
push:
6+
branches: [master]
7+
# Allow manual trigger from Actions tab
8+
workflow_dispatch:
9+
10+
# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages
11+
permissions:
12+
contents: read
13+
pages: write
14+
id-token: write
15+
16+
# Allow only one concurrent deployment, skipping runs queued between the run in-progress and latest queued.
17+
# However, do NOT cancel in-progress runs as we want to allow these production deployments to complete.
18+
concurrency:
19+
group: "pages"
20+
cancel-in-progress: false
21+
22+
env:
23+
BUILD_PATH: "."
24+
25+
jobs:
26+
build:
27+
name: Build
28+
runs-on: ubuntu-latest
29+
steps:
30+
- name: Checkout
31+
uses: actions/checkout@v4
32+
33+
- name: Setup Node
34+
uses: actions/setup-node@v4
35+
with:
36+
node-version: "20"
37+
cache: npm
38+
cache-dependency-path: ${{ env.BUILD_PATH }}/package-lock.json
39+
40+
- name: Setup Pages
41+
id: pages
42+
uses: actions/configure-pages@v5
43+
44+
- name: Install dependencies
45+
run: npm ci
46+
working-directory: ${{ env.BUILD_PATH }}
47+
48+
- name: Build with Astro
49+
run: npm run build
50+
working-directory: ${{ env.BUILD_PATH }}
51+
52+
- name: Upload artifact
53+
uses: actions/upload-pages-artifact@v3
54+
with:
55+
path: ${{ env.BUILD_PATH }}/dist
56+
57+
deploy:
58+
name: Deploy
59+
needs: build
60+
runs-on: ubuntu-latest
61+
environment:
62+
name: github-pages
63+
url: ${{ steps.deployment.outputs.page_url }}
64+
steps:
65+
- name: Deploy to GitHub Pages
66+
id: deployment
67+
uses: actions/deploy-pages@v4

.gitignore

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
# build output
2+
dist/
3+
4+
# generated types
5+
.astro/
6+
7+
# dependencies
8+
node_modules/
9+
10+
# logs
11+
npm-debug.log*
12+
yarn-debug.log*
13+
yarn-error.log*
14+
pnpm-debug.log*
15+
16+
# environment variables
17+
.env
18+
.env.production
19+
20+
# macOS-specific files
21+
.DS_Store

0 commit comments

Comments
 (0)