diff --git a/README.md b/README.md index ee60e26..e095dc1 100644 --- a/README.md +++ b/README.md @@ -1,10 +1,10 @@ -# Nutrition Tracker +# Vitalia -This application is a tool I can use to track my daily nutrition intake. The hosted instance requires a password to access, but you are welcome to use this to host your own tool! +Vitalia aims to be a complete nutrition tracker with all the bells and whistles, but none of the paywalls. She's here to help you reach your fitness goals! ## Live Version -This page is currently deployed. [View the live website.](https://food.nhcarrigan.com) +This page is currently deployed. [View the live website.](https://vitalia.nhcarrigan.com) ## Feedback and Bugs diff --git a/client/src/app/app.component.ts b/client/src/app/app.component.ts index 2b16ee8..b2be948 100644 --- a/client/src/app/app.component.ts +++ b/client/src/app/app.component.ts @@ -14,5 +14,5 @@ import { RouterOutlet } from "@angular/router"; templateUrl: "./app.component.html", }) export class AppComponent { - public title = "client"; + public title = "Vitalia"; } diff --git a/client/src/app/landing/landing.component.html b/client/src/app/landing/landing.component.html index cf8f1e1..3ad2853 100644 --- a/client/src/app/landing/landing.component.html +++ b/client/src/app/landing/landing.component.html @@ -1 +1,5 @@ -

landing works!

+

Vitalia

+ +

Vitalia is your nutritional assistant and companion, here to help you reach your fitness goals!

+ +

Stay tuned, we're hard at work to bring her to life!

diff --git a/client/src/index.html b/client/src/index.html index d4d403e..bedff29 100644 --- a/client/src/index.html +++ b/client/src/index.html @@ -2,7 +2,7 @@ - Client + Vitalia diff --git a/server/src/utils/logger.ts b/server/src/utils/logger.ts index 8dc6802..ce8d0fb 100644 --- a/server/src/utils/logger.ts +++ b/server/src/utils/logger.ts @@ -7,6 +7,6 @@ import { Logger } from "@nhcarrigan/logger"; export const logger = new Logger( - "Nutrition API", + "Vitalia", process.env.LOG_TOKEN ?? "", );