This commit is contained in:
Charlotte Croce 2025-04-03 12:53:24 -04:00
parent 1926ac8567
commit c9cf81489c
2 changed files with 19 additions and 10 deletions

View file

@ -8,14 +8,23 @@ jobs:
build-and-deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Install and Build
run: |
npm install
npm run build
- name: Deploy
- name: Checkout
uses: actions/checkout@v3
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: '18'
- name: Install Dependencies
run: npm ci
- name: Build
run: npm run build
- name: Deploy 🚀
uses: JamesIves/github-pages-deploy-action@v4
with:
branch: gh-pages
folder: build
branch: gh-pages
clean: true

View file

@ -41,12 +41,12 @@ const HomePage = () => {
<div className="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-6">
<ProjectCard
title="Champlain Tech Journals"
description="Notes, code, and lab write-ups from my Champlain College courses"
description="Notes, code, and lab write-ups from my Champlain College courses. Probably a useful resource if you also go here."
sourceUrl="https://codeberg.org/charlottecroce/ChamplainTechJournals"
/>
<ProjectCard
title="Nøkken Health"
description="A mobile app to track and analyze health data"
description="A mobile app to track and analyze health data. Track medications, bloodwork, symptoms, and more. Made with Flutter"
sourceUrl="https://codeberg.org/charlottecroce/nokken"
/>
</div>