-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* feat: black, verbiage nits * feat: button refinement, bumped packages * feat: reworked github action workflows * fix: updated wrangler.toml * fix: deploy as name instead of env * feat: changed rounding of buttons, test drive with new verbiage * refactor: daisy ui color assignments * feat: tweaked navbar, still need to debug * feat: finalized navbar * feat: polished home hero, added scroll indicators * feat: snappier navbar, shifted hero on mobile * feat: about section tweaks * refactor: migrated tailwinds base to prose content tags * feat: added prose components, .gitignore * feat: misc hero and about updates * feat: color tweaks, start of refinement on home experience section * fix: added dangling files * feat: rough draft of light mode if needed * feat: misc cleaning, summarize data updates * feat: projects grid and list refinement * feat: updated contact section * feat: project grid padding nit * nit: fractional logo centering
- Loading branch information
Showing
59 changed files
with
4,794 additions
and
1,803 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
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,57 @@ | ||
name: Nuxt Integration | ||
|
||
on: | ||
pull_request | ||
|
||
env: | ||
CF_API_TOKEN: ${{ secrets.CF_API_TOKEN }} | ||
DEPLOY_TAG: mark4-nuxt-stage-${{ github.event.number }} | ||
DEPLOY_ROUTE: https://mark4-nuxt-stage-${{ github.event.number }}.radicalplatforms.workers.dev | ||
|
||
jobs: | ||
cf_deploy_nuxt_prod: | ||
name: Deploy Nuxt to Stage | ||
runs-on: ubuntu-latest | ||
|
||
environment: | ||
name: nuxt-stage-${{ github.event.number }} | ||
url: ${{ env.DEPLOY_ROUTE }} | ||
|
||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v4 | ||
|
||
- uses: actions/setup-node@v4 | ||
with: | ||
node-version: 18 | ||
cache: 'npm' | ||
cache-dependency-path: '*/package-lock.json' | ||
|
||
- name: Install Summarize Dependencies | ||
run: npm ci | ||
working-directory: nuxt/summarize | ||
|
||
- name: Validate Summarize Data | ||
run: npm run validate | ||
working-directory: nuxt/summarize | ||
|
||
- name: Install Nuxt Dependencies | ||
run: npm ci | ||
working-directory: nuxt | ||
|
||
- name: Generate Summarize PDFs | ||
run: npm run dev & sleep 15 && cd summarize && npm run compile | ||
working-directory: nuxt | ||
|
||
- name: Build Nuxt | ||
run: npm run build | ||
working-directory: nuxt | ||
env: | ||
NITRO_PRESET: cloudflare | ||
|
||
- name: Publish Nuxt to Cloudflare Workers | ||
uses: cloudflare/wrangler-action@v3 | ||
with: | ||
apiToken: ${{ secrets.CF_API_TOKEN }} | ||
command: deploy --name ${{ env.DEPLOY_TAG }} | ||
workingDirectory: nuxt |
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,23 @@ | ||
name: PR Smart Comments | ||
|
||
on: | ||
pull_request: | ||
types: [opened, reopened] | ||
|
||
jobs: | ||
write_smart_comments: | ||
name: Write Smart Comments | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- uses: thollander/actions-comment-pull-request@v2 | ||
with: | ||
message: | | ||
**Pull Request Smart Comments** | ||
*Assignee(s): Mark tasks as they are completed. Code Reviewer(s): Ensure all tasks are complete and follow best standards before approving.* | ||
- [ ] Assigned at least one (1+) experienced code reviewer and notified them requesting a review | ||
- [ ] Assigned all contributors as assignees | ||
- [ ] Assigned relevant labels that are a subset or related to the parent issue's labels | ||
- [ ] Checked that PR description contains a quick summary of work accomplished and uses issue [closing words](https://docs.github.com/en/issues/tracking-your-work-with-issues/linking-a-pull-request-to-an-issue#linking-a-pull-request-to-an-issue-using-a-keyword) | ||
- [ ] Checked that completed tasks in related issue(s) are marked accordingly | ||
- [ ] Checked that PR title is descriptive and follows [commit message semantics](https://gist.github.com/rak3rman/ddea632f1b006efff0ec613e55d59756) |
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,45 @@ | ||
name: Staging Teardown | ||
|
||
on: | ||
pull_request: | ||
types: [closed] | ||
|
||
env: | ||
CF_API_TOKEN: ${{ secrets.CF_API_TOKEN }} | ||
GH_ENV_APP_ID: ${{ secrets.GH_ENV_APP_ID }} | ||
GH_ENV_APP_PRIVATE_KEY: ${{ secrets.GH_ENV_APP_PRIVATE_KEY }} | ||
NUXT_DEPLOY_TAG: mark4-nuxt-stage-${{ github.event.number }} | ||
|
||
jobs: | ||
cf_teardown: | ||
name: Delete Staging Cloudflare Workers | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v4 | ||
|
||
- name: Teardown Nuxt | ||
uses: cloudflare/wrangler-action@v3 | ||
with: | ||
apiToken: ${{ env.CF_API_TOKEN }} | ||
command: delete --name ${{ env.NUXT_DEPLOY_TAG }} | ||
workingDirectory: nuxt | ||
|
||
gh_delete_deploy_env: | ||
name: Delete Github Deploy Environment | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Get GitHub App Token | ||
uses: navikt/github-app-token-generator@a3831f44404199df32d8f39f7c0ad9bb8fa18b1c | ||
id: get-token | ||
with: | ||
app-id: ${{ env.GH_ENV_APP_ID }} | ||
private-key: ${{ env.GH_ENV_APP_PRIVATE_KEY }} | ||
|
||
- name: Delete Github Deploy Environment | ||
uses: strumwolf/delete-deployment-environment@v3 | ||
with: | ||
token: ${{ steps.get-token.outputs.token }} | ||
environment: nuxt-stage-${{ github.event.number }} |
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
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,18 @@ | ||
<template> | ||
<div | ||
class="flex items-center rounded-xl border-[1.5px] px-[20px] py-[7px] delay-75 duration-200" | ||
:class=" | ||
props.class | ||
? props.class | ||
: 'border-accent text-accent hover:border-primary hover:text-primary' | ||
" | ||
> | ||
<slot /> | ||
</div> | ||
</template> | ||
|
||
<script setup> | ||
const props = defineProps({ | ||
class: String, | ||
}); | ||
</script> |
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,7 @@ | ||
<template> | ||
<div | ||
class="h-min rounded-lg border-[1.5px] border-secondary bg-secondary px-[12px] py-[4.75px] leading-none text-primary delay-75 duration-200 hover:border-accent hover:bg-base-100" | ||
> | ||
<slot /> | ||
</div> | ||
</template> |
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.