Ui update dark mode to light mode

This commit is contained in:
mahlatseclayton
2026-07-30 19:15:42 +02:00
parent 2091fc6379
commit c037717e53
13 changed files with 168 additions and 171 deletions

View File

@@ -43,7 +43,7 @@ export default async function HomePage({ searchParams }: PageProps) {
{/* Empty state if no tasks exist */}
{tasks.length === 0 ? (
<div className={styles.emptyState}>
<p className={styles.emptyText}>No active tasks found. Create one above!</p>
<p className={styles.emptyText}>No active tasks found. Create one above.</p>
</div>
) : (
/* Render grid of task cards */