feat: couple of other tweaks

This commit is contained in:
Naomi Carrigan 2025-05-22 18:40:52 -07:00
parent eecb1b1841
commit c121b7d5aa
Signed by: naomi
SSH Key Fingerprint: SHA256:rca1iUI2OhAM6n4FIUaFcZcicmri0jgocqKiTTAfrt8
5 changed files with 11 additions and 7 deletions

View File

@ -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

View File

@ -14,5 +14,5 @@ import { RouterOutlet } from "@angular/router";
templateUrl: "./app.component.html",
})
export class AppComponent {
public title = "client";
public title = "Vitalia";
}

View File

@ -1 +1,5 @@
<p>landing works!</p>
<h1>Vitalia</h1>
<p>Vitalia is your nutritional assistant and companion, here to help you reach your fitness goals!</p>
<p>Stay tuned, we're hard at work to bring her to life!</p>

View File

@ -2,7 +2,7 @@
<html lang="en">
<head>
<meta charset="utf-8">
<title>Client</title>
<title>Vitalia</title>
<base href="/">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="icon" type="image/x-icon" href="favicon.ico">

View File

@ -7,6 +7,6 @@
import { Logger } from "@nhcarrigan/logger";
export const logger = new Logger(
"Nutrition API",
"Vitalia",
process.env.LOG_TOKEN ?? "",
);