Ui update dark mode to light mode
This commit is contained in:
@@ -1,4 +1,4 @@
|
||||
/* Light Canvas Page Layout */
|
||||
/* Clean Light Page Layout */
|
||||
.mainContainer {
|
||||
max-width: 56rem;
|
||||
margin: 0 auto;
|
||||
@@ -11,7 +11,7 @@
|
||||
color: #0f172a;
|
||||
}
|
||||
|
||||
/* Header & Royal Blue Titles */
|
||||
/* Header Section */
|
||||
.header {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
@@ -23,7 +23,7 @@
|
||||
line-height: 2.5rem;
|
||||
font-weight: 800;
|
||||
letter-spacing: -0.025em;
|
||||
color: #1d4ed8;
|
||||
color: #0f172a;
|
||||
}
|
||||
|
||||
.subtitle {
|
||||
@@ -42,7 +42,7 @@
|
||||
.sectionTitle {
|
||||
font-size: 1.25rem;
|
||||
font-weight: 700;
|
||||
color: #1e40af;
|
||||
color: #1e3a8a;
|
||||
}
|
||||
|
||||
/* Empty State Card */
|
||||
|
||||
@@ -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 */
|
||||
|
||||
Reference in New Issue
Block a user