From b5cbd2c2e9f7c6c5aaf69ddfb002eed2d7203c5f Mon Sep 17 00:00:00 2001 From: "Richard K." Date: Mon, 16 Sep 2024 00:52:09 -0400 Subject: [PATCH] Changed Project Name --- Website/astro.config.ts | 2 +- Website/src/components/Header.astro | 26 +++++++++++++------------- Website/src/pages/404.astro | 2 +- Website/src/pages/contributors.astro | 4 ++-- Website/src/pages/design.astro | 8 ++++---- Website/src/pages/index.astro | 2 +- Website/src/pages/ui.astro | 16 ++++++++-------- 7 files changed, 30 insertions(+), 30 deletions(-) diff --git a/Website/astro.config.ts b/Website/astro.config.ts index 8d8c94e..b1da16b 100644 --- a/Website/astro.config.ts +++ b/Website/astro.config.ts @@ -5,7 +5,7 @@ import tailwind from '@astrojs/tailwind' // https://astro.build/config export default defineConfig({ site: 'https://rkozyak.github.io/', - base: '/CS2340A_Team6/', + base: '/HealthTrack/', integrations: [ react(), tailwind({ diff --git a/Website/src/components/Header.astro b/Website/src/components/Header.astro index c885acd..f1c1ddd 100644 --- a/Website/src/components/Header.astro +++ b/Website/src/components/Header.astro @@ -7,25 +7,25 @@ import ThemeToggle from '@/components/ThemeToggle.astro'
@@ -33,7 +33,7 @@ import ThemeToggle from '@/components/ThemeToggle.astro'
\ No newline at end of file diff --git a/Website/src/pages/design.astro b/Website/src/pages/design.astro index 990c8cc..093a067 100644 --- a/Website/src/pages/design.astro +++ b/Website/src/pages/design.astro @@ -18,13 +18,13 @@ import BaseLayout from '@/layouts/BaseLayout.astro'; On top of that, our group also added Strategy Design later on in our development phase in order to abstract the sorting process and allow for the addition of more possible sorting methods using the strategy design pattern. With it, our application now has a refresh sorting strategy and name sorting strategy that allows for a cleaner code and easier update.

- HealthTrack + HealthTrack - HealthTrack + HealthTrack - HealthTrack + HealthTrack - HealthTrack + HealthTrack diff --git a/Website/src/pages/index.astro b/Website/src/pages/index.astro index 7d85695..5d8056f 100644 --- a/Website/src/pages/index.astro +++ b/Website/src/pages/index.astro @@ -58,7 +58,7 @@ import { buttonVariants } from '@/components/ui/button'
- HealthTrack + HealthTrack
diff --git a/Website/src/pages/ui.astro b/Website/src/pages/ui.astro index 7f74ae3..20c433a 100644 --- a/Website/src/pages/ui.astro +++ b/Website/src/pages/ui.astro @@ -2,14 +2,14 @@ import BaseLayout from '@/layouts/BaseLayout.astro'; const screenshots = [ - { src: '/CS2340A_Team6/launchPage.png', alt: 'Launch Screen', description: 'This is text describing what is seen on the picture above.' }, - { src: '/CS2340A_Team6/loginPage.png', alt: 'Sign In Screen', description: 'This is text describing what is seen on the picture above.' }, - { src: '/CS2340A_Team6/homePage.png', alt: 'Home Screen', description: 'This is text describing what is seen on the picture above.' }, - { src: '/CS2340A_Team6/accountInfo.png', alt: 'Account Info Screen', description: 'This is text describing what is seen on the picture above.' }, - { src: '/CS2340A_Team6/caloriesPage.png', alt: 'Calories Screen', description: 'This is text describing what is seen on the picture above.' }, - { src: '/CS2340A_Team6/workoutTrackerPage.png', alt: 'Tracker Screen', description: 'This is text describing what is seen on the picture above.' }, - { src: '/CS2340A_Team6/workoutPlansPage.png', alt: 'Workout Screen', description: 'This is text describing what is seen on the picture above.' }, - { src: '/CS2340A_Team6/communityPage.png', alt: 'Community Screen', description: 'This is text describing what is seen on the picture above.' }, + { src: '/HealthTrack/launchPage.png', alt: 'Launch Screen', description: 'This is text describing what is seen on the picture above.' }, + { src: '/HealthTrack/loginPage.png', alt: 'Sign In Screen', description: 'This is text describing what is seen on the picture above.' }, + { src: '/HealthTrack/homePage.png', alt: 'Home Screen', description: 'This is text describing what is seen on the picture above.' }, + { src: '/HealthTrack/accountInfo.png', alt: 'Account Info Screen', description: 'This is text describing what is seen on the picture above.' }, + { src: '/HealthTrack/caloriesPage.png', alt: 'Calories Screen', description: 'This is text describing what is seen on the picture above.' }, + { src: '/HealthTrack/workoutTrackerPage.png', alt: 'Tracker Screen', description: 'This is text describing what is seen on the picture above.' }, + { src: '/HealthTrack/workoutPlansPage.png', alt: 'Workout Screen', description: 'This is text describing what is seen on the picture above.' }, + { src: '/HealthTrack/communityPage.png', alt: 'Community Screen', description: 'This is text describing what is seen on the picture above.' }, // Add more screenshots if needed ]; ---