Skip to content

Commit b3e0309

Browse files
committed
feat: complete UI overhaul, modern theme, Next.js migration, and advanced tsParticles
1 parent 630f303 commit b3e0309

1,308 files changed

Lines changed: 546748 additions & 20628 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.

.github/workflows/deploy.yml

Lines changed: 25 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: Deploy React App to GitHub Pages
1+
name: Deploy Next.js to GitHub Pages
22

33
on:
44
push:
@@ -10,29 +10,45 @@ permissions:
1010
pages: write
1111
id-token: write
1212

13+
concurrency:
14+
group: "pages"
15+
cancel-in-progress: false
16+
1317
jobs:
1418
build:
1519
runs-on: ubuntu-latest
16-
1720
steps:
18-
- name: Checkout repository
21+
- name: Checkout
1922
uses: actions/checkout@v4
2023

24+
- name: Setup Node
25+
uses: actions/setup-node@v4
26+
with:
27+
node-version: "20"
28+
29+
- name: Setup pnpm
30+
uses: pnpm/action-setup@v3
31+
with:
32+
version: 8
33+
2134
- name: Install dependencies
22-
run: npm install
35+
run: pnpm install --frozen-lockfile
2336

24-
- name: Build project
25-
run: npm run build
37+
- name: Build Next.js
38+
run: pnpm run build
2639

2740
- name: Upload artifact
2841
uses: actions/upload-pages-artifact@v3
2942
with:
30-
path: build
43+
path: ./out
3144

3245
deploy:
33-
needs: build
46+
environment:
47+
name: github-pages
48+
url: ${{ steps.deployment.outputs.page_url }}
3449
runs-on: ubuntu-latest
35-
50+
needs: build
3651
steps:
3752
- name: Deploy to GitHub Pages
53+
id: deployment
3854
uses: actions/deploy-pages@v4

.next/BUILD_ID

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
BBFXwCB5AQoH4920YuAG_
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
{
2+
"/_global-error/page": "/_global-error",
3+
"/_not-found/page": "/_not-found",
4+
"/mission/page": "/mission",
5+
"/page": "/",
6+
"/privacy.html/page": "/privacy.html",
7+
"/terms.html/page": "/terms.html"
8+
}

.next/build-manifest.json

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
{
2+
"pages": {
3+
"/_app": []
4+
},
5+
"devFiles": [],
6+
"polyfillFiles": [
7+
"static/chunks/a6dad97d9634a72d.js"
8+
],
9+
"lowPriorityFiles": [
10+
"static/BBFXwCB5AQoH4920YuAG_/_ssgManifest.js",
11+
"static/BBFXwCB5AQoH4920YuAG_/_buildManifest.js"
12+
],
13+
"rootMainFiles": [
14+
"static/chunks/3bb401860ad4e55b.js",
15+
"static/chunks/818b16ec220368d5.js",
16+
"static/chunks/958fc060b5fee65f.js",
17+
"static/chunks/3a2a57b8d1a245ee.js",
18+
"static/chunks/turbopack-9cb0c79795b5eeb8.js"
19+
]
20+
}

0 commit comments

Comments
 (0)