-
Team Summary
+
Team Summary
@@ -46,8 +46,8 @@ export function TeamSummary() {
className="flex flex-col items-center gap-2 py-5 hover:bg-[rgba(255,255,255,0.02)] transition-colors"
>
-
{item.value}
-
+
{item.value}
+
{item.label}
diff --git a/frontend/src/components/dashboard/TreeListItem.tsx b/frontend/src/components/dashboard/TreeListItem.tsx
index 5561e7a3..769290c5 100644
--- a/frontend/src/components/dashboard/TreeListItem.tsx
+++ b/frontend/src/components/dashboard/TreeListItem.tsx
@@ -33,7 +33,7 @@ export function TreeListItem({
return (
navigate(getTreeNavigatePath(id, treeType))}
- className="group grid cursor-pointer items-center gap-3 rounded-lg border border-transparent bg-card px-4 py-3 transition-colors hover:border-border hover:bg-[var(--sidebar-hover)]"
+ className="group grid cursor-pointer items-center gap-3 rounded-lg border border-transparent bg-[#14161d] px-4 py-3 transition-colors hover:border-[#1e2130] hover:bg-[var(--sidebar-hover)]"
style={{ gridTemplateColumns: '40px 1fr 130px 80px 100px 40px' }}
>
{/* Icon box */}
@@ -46,15 +46,15 @@ export function TreeListItem({
{/* Info */}
-
{name}
+
{name}
{tags.slice(0, 3).map(tag => (
-
+
{tag}
))}
{description && tags.length === 0 && (
- {description}
+ {description}
)}
@@ -64,13 +64,13 @@ export function TreeListItem({
{category && (
<>
-
{category.name}
+
{category.name}
>
)}
{/* Usage count */}
-
+
{usageCount} uses
@@ -85,7 +85,7 @@ export function TreeListItem({
e.stopPropagation()
navigate(getTreeEditorPath(id, treeType))
}}
- className="flex h-8 w-8 items-center justify-center rounded-md text-muted-foreground opacity-0 transition-opacity hover:bg-accent group-hover:opacity-100"
+ className="flex h-8 w-8 items-center justify-center rounded-md text-[#848b9b] opacity-0 transition-opacity hover:bg-accent group-hover:opacity-100"
>
diff --git a/frontend/src/components/dashboard/WeeklyCalendar.tsx b/frontend/src/components/dashboard/WeeklyCalendar.tsx
index db289cfe..3c0f618c 100644
--- a/frontend/src/components/dashboard/WeeklyCalendar.tsx
+++ b/frontend/src/components/dashboard/WeeklyCalendar.tsx
@@ -34,10 +34,10 @@ export function WeeklyCalendar({ events = {} }: WeeklyCalendarProps) {
const days = useMemo(() => getWeekDays(), [])
return (
-
+
-
-
This Week
+
+ This Week
{days.map((day, i) => {
@@ -56,10 +56,10 @@ export function WeeklyCalendar({ events = {} }: WeeklyCalendarProps) {
borderBottom: day.isToday ? '2px solid #06b6d4' : '1px solid var(--glass-border)',
}}
>
-
+
{day.label}
-
@@ -76,8 +76,8 @@ export function WeeklyCalendar({ events = {} }: WeeklyCalendarProps) {
background: 'rgba(255, 255, 255, 0.02)',
}}
>
- {event.title}
- {event.time}
+ {event.title}
+ {event.time}
))
)}