Skip to content

Commit b66bd85

Browse files
authored
Merge pull request #54 from AOSSIE-Org/dev
Initial Deployment
2 parents 3257c22 + f8b1dc6 commit b66bd85

File tree

19 files changed

+148
-77
lines changed

19 files changed

+148
-77
lines changed
Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
name: Deploy Landing Page
2+
3+
on:
4+
push:
5+
branches: [main]
6+
7+
permissions:
8+
contents: read
9+
pages: write
10+
id-token: write
11+
12+
jobs:
13+
build:
14+
runs-on: ubuntu-latest
15+
16+
steps:
17+
- uses: actions/checkout@v6
18+
19+
- uses: actions/setup-node@v6
20+
with:
21+
node-version: 22
22+
23+
- run: npm run build
24+
25+
- uses: actions/upload-pages-artifact@v3
26+
with:
27+
path: build/
28+
29+
deploy:
30+
31+
needs: build
32+
runs-on: ubuntu-latest
33+
environment:
34+
name: github-pages
35+
url: ${{ steps.deployment.outputs.page_url }}
36+
37+
steps:
38+
- name: Deploy to GitHub Pages
39+
uses: actions/deploy-pages@v4
40+
id: deployment

package-lock.json

Lines changed: 9 additions & 26 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,5 +37,6 @@
3737
"last 1 firefox version",
3838
"last 1 safari version"
3939
]
40-
}
41-
}
40+
},
41+
"homepage": "https://aossie-org.github.io/Resonate-Website"
42+
}

public/index.html

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,10 @@
1010
content="Resonate is an Open Source social voice platform maintained by AOSSIE. Join rooms, talk to people, and connect with the community."
1111
/>
1212
<link rel="apple-touch-icon" href="%PUBLIC_URL%/logo192.png" />
13+
<!-- Google Fonts - Raleway -->
14+
<link rel="preconnect" href="https://fonts.googleapis.com">
15+
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
16+
<link href="https://fonts.googleapis.com/css2?family=Raleway:wght@300;400;500;600;700;800&display=swap" rel="stylesheet">
1317
<!--
1418
manifest.json provides metadata used when your web app is installed on a
1519
user's mobile device or desktop. See https://developers.google.com/web/fundamentals/web-app-manifest/

src/assets/chatscreen.png

224 KB
Loading

src/assets/createrooms.png

259 KB
Loading

src/assets/pairchat.png

238 KB
Loading

src/assets/resonate1 1.png

-224 KB
Binary file not shown.

src/assets/resonate_app.png

2.71 MB
Loading

src/assets/roomscreen.png

247 KB
Loading

0 commit comments

Comments
 (0)