Skip to content

Commit 4584d4a

Browse files
Final commit
1 parent 01cefe5 commit 4584d4a

3 files changed

Lines changed: 4 additions & 11 deletions

File tree

frontend/index.html

Lines changed: 3 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -4,19 +4,12 @@
44
<meta charset="UTF-8" />
55
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
66
<!-- TODO: Set the document title to the name of your application -->
7-
<title>Lovable App</title>
8-
<meta name="description" content="Lovable Generated Project" />
9-
<meta name="author" content="Lovable" />
7+
<title>Multi Agent Calorie Tracker</title>
108

119
<!-- TODO: Update og:title to match your application name -->
12-
<meta property="og:title" content="Lovable App" />
13-
<meta property="og:description" content="Lovable Generated Project" />
10+
<meta property="og:title" content="Multi Agent Calorie Tracker" />
11+
<meta property="og:description" content="A Full-Stack Intelligent Calorie Tracking System Using Prompt-Driven Multi-Agent Workflows" />
1412
<meta property="og:type" content="website" />
15-
<meta property="og:image" content="https://lovable.dev/opengraph-image-p98pqg.png" />
16-
17-
<meta name="twitter:card" content="summary_large_image" />
18-
<meta name="twitter:site" content="@Lovable" />
19-
<meta name="twitter:image" content="https://lovable.dev/opengraph-image-p98pqg.png" />
2013
</head>
2114

2215
<body>

frontend/public/favicon.ico

-19.9 KB
Binary file not shown.

frontend/src/components/dashboard/FoodLogItem.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ export function FoodLogItem({
5555
"font-bold",
5656
isWorkout ? "text-accent" : "text-calories"
5757
)}>
58-
{isWorkout ? "-" : "+"}{calories} cal
58+
{isWorkout ? "+" : "-"}{Math.abs(calories)} cal
5959
</div>
6060
<div className="flex items-center gap-1 text-xs text-muted-foreground">
6161
<Clock className="w-3 h-3" />

0 commit comments

Comments
 (0)