diff --git a/src/modules/todos/components/todo-card.tsx b/src/modules/todos/components/todo-card.tsx
index 561ba94..db45442 100644
--- a/src/modules/todos/components/todo-card.tsx
+++ b/src/modules/todos/components/todo-card.tsx
@@ -68,13 +68,13 @@ export function TodoCard({ todo }: TodoCardProps) {
{todo.title}
{todo.description && (
{todo.description}
@@ -120,7 +120,7 @@ export function TodoCard({ todo }: TodoCardProps) {
{todo.categoryName}
)}
{todo.imageUrl && (
-
+
Image
@@ -129,12 +129,12 @@ export function TodoCard({ todo }: TodoCardProps) {
{todo.dueDate && (
Due: {formatDate(todo.dueDate)}
{isOverdue && (
-
+
(Overdue)
)}
diff --git a/src/modules/todos/todo-list.page.tsx b/src/modules/todos/todo-list.page.tsx
index 0939b82..e852a33 100644
--- a/src/modules/todos/todo-list.page.tsx
+++ b/src/modules/todos/todo-list.page.tsx
@@ -13,7 +13,7 @@ export default async function TodoListPage() {
Todos
-
+
Manage your tasks and stay organized
@@ -27,11 +27,11 @@ export default async function TodoListPage() {
{todos.length === 0 ? (
-
📝
-
+
📝
+
No todos yet
-
+
Create your first todo to get started