-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
MG-8 - Refactor the Landing Page Components (#17)
* test: deployment with new pipeline Signed-off-by: Musilah <[email protected]> * refactor components Signed-off-by: Musilah <[email protected]> * reverse homepage change Signed-off-by: Musilah <[email protected]> * fix favicon Signed-off-by: Musilah <[email protected]> * add accredition for illustrations Signed-off-by: Musilah <[email protected]> * fix hero and header Signed-off-by: Musilah <[email protected]> * resize hero and refactor further Signed-off-by: Musilah <[email protected]> * update font and features Signed-off-by: Musilah <[email protected]> * resolve comments Signed-off-by: Musilah <[email protected]> * use sheets instead Signed-off-by: Musilah <[email protected]> * fix font sizes and footer orientation Signed-off-by: Musilah <[email protected]> * add hidden sheet title Signed-off-by: Musilah <[email protected]> --------- Signed-off-by: Musilah <[email protected]>
- Loading branch information
Showing
50 changed files
with
5,296 additions
and
633 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
name: Test Deployment Workflow | ||
|
||
on: | ||
pull_request: | ||
branches: | ||
- main | ||
|
||
permissions: | ||
contents: read | ||
|
||
jobs: | ||
test-deploy: | ||
name: Test Build, Lint, and Local Deployment | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Checkout code | ||
uses: actions/checkout@v4 | ||
with: | ||
fetch-depth: 0 | ||
|
||
- name: Setup Node.js | ||
uses: actions/setup-node@v3 | ||
with: | ||
node-version: 20 | ||
cache: "npm" | ||
|
||
- name: Install dependencies | ||
run: npm install | ||
|
||
- name: Run lint check | ||
run: npm run lint | ||
|
||
- name: Build project | ||
run: npm run build | ||
|
||
- name: Serve locally | ||
run: npx serve@latest out -l 3000 & | ||
|
||
- name: Verify local deployment | ||
run: curl -s http://localhost:3000 | grep "<title>" || exit 1 | ||
|
||
- name: Stop server | ||
run: pkill serve |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.