diff --git a/src/app/(app)/briefs/page.tsx b/src/app/(app)/briefs/page.tsx index 09341e9..0cb83ff 100644 --- a/src/app/(app)/briefs/page.tsx +++ b/src/app/(app)/briefs/page.tsx @@ -177,7 +177,7 @@ export default function BriefsPage() { )} -
+
{filtered.length} of {rows.length} brief{rows.length === 1 ? "" : "s"}
@@ -252,14 +252,14 @@ function BriefRowView({ return ( - + {brief.source}
{brief.title}
{brief.description && ( -
+
{brief.description}
)} @@ -269,7 +269,7 @@ function BriefRowView({
{brief.requestorName}
{brief.requestorEmail && ( -
+
{brief.requestorEmail}
)} @@ -282,7 +282,7 @@ function BriefRowView({ {brief.clientTeam ? ( - + {brief.clientTeam.name} ) : ( @@ -313,7 +313,7 @@ function BriefRowView({ > @@ -341,7 +341,7 @@ function BriefRowView({
@@ -571,7 +571,7 @@ function Th({ label, className }: { label: string; className?: string }) { return ( diff --git a/src/app/(app)/dashboard/page.tsx b/src/app/(app)/dashboard/page.tsx index 6f30889..be4d7ce 100644 --- a/src/app/(app)/dashboard/page.tsx +++ b/src/app/(app)/dashboard/page.tsx @@ -89,7 +89,7 @@ function KpiCard({

{value}

{title}

{subtitle && ( -

+

{subtitle}

)} @@ -237,13 +237,13 @@ export default function DashboardPage() { > - + {deliv.name} -

+

{deliv.project.name}

diff --git a/src/app/(app)/deliverables/page.tsx b/src/app/(app)/deliverables/page.tsx index 3bf2d15..ad7052b 100644 --- a/src/app/(app)/deliverables/page.tsx +++ b/src/app/(app)/deliverables/page.tsx @@ -424,7 +424,7 @@ export default function DeliverablesPage() { className="border-b transition-colors hover:bg-[var(--muted)]/40" > - + {r.project.omgJobNumber ?? "—"} @@ -435,7 +435,7 @@ export default function DeliverablesPage() { > {r.project.name} {r.project.clientTeam && ( - + · {r.project.clientTeam.name} )} @@ -467,12 +467,12 @@ export default function DeliverablesPage() { {due ? format(due, "MMM d") : } - + {r.priority} - + {r.status.replace(/_/g, " ")} @@ -494,7 +494,7 @@ function Th({ label, className }: { label: string; className?: string }) { return ( @@ -522,7 +522,7 @@ function SortableTh({ return ( onClick(sortKey)} diff --git a/src/app/(app)/notifications/page.tsx b/src/app/(app)/notifications/page.tsx index f7a31fd..eb16c01 100644 --- a/src/app/(app)/notifications/page.tsx +++ b/src/app/(app)/notifications/page.tsx @@ -118,7 +118,7 @@ export default function NotificationsPage() {

{notif.message}

-

+

{formatDistanceToNow(new Date(notif.createdAt), { addSuffix: true, })} diff --git a/src/app/(app)/projects/[projectId]/deliverables/[deliverableId]/page.tsx b/src/app/(app)/projects/[projectId]/deliverables/[deliverableId]/page.tsx index 9455079..508e28b 100644 --- a/src/app/(app)/projects/[projectId]/deliverables/[deliverableId]/page.tsx +++ b/src/app/(app)/projects/[projectId]/deliverables/[deliverableId]/page.tsx @@ -160,7 +160,7 @@ export default function DeliverableDetailPage() {

{deliverable.cmfSku && (
-

+

CMF / SKU

{deliverable.cmfSku}

@@ -168,7 +168,7 @@ export default function DeliverableDetailPage() { )} {deliverable.assetCount != null && (
-

+

Asset Count

{deliverable.assetCount}

@@ -176,7 +176,7 @@ export default function DeliverableDetailPage() { )} {deliverable.requestedDueDate && (
-

+

Requested Due Date

{format(new Date(deliverable.requestedDueDate), "MMM d, yyyy")}

@@ -184,7 +184,7 @@ export default function DeliverableDetailPage() { )} {deliverable.plannedDeliveryDate && (
-

+

Planned Delivery

{format(new Date(deliverable.plannedDeliveryDate), "MMM d, yyyy")}

@@ -192,7 +192,7 @@ export default function DeliverableDetailPage() { )} {deliverable.actualDeliveryDate && (
-

+

Actual Delivery

{format(new Date(deliverable.actualDeliveryDate), "MMM d, yyyy")}

@@ -200,7 +200,7 @@ export default function DeliverableDetailPage() { )} {deliverable.wfInputDate && (
-

+

WF Input Date

{format(new Date(deliverable.wfInputDate), "MMM d, yyyy")}

@@ -261,14 +261,14 @@ export default function DeliverableDetailPage() { {/* Row 1 — step number · name · badges | status */}
- + {stageOrder}. {stageName} {isGate && ( GATE @@ -277,7 +277,7 @@ export default function DeliverableDetailPage() { {isOptional && ( Optional @@ -327,7 +327,7 @@ export default function DeliverableDetailPage() { size="sm" variant={isSkip || isReopen ? "outline" : "default"} className={cn( - "h-6 text-[11px] px-2", + "h-6 text-[17px] px-2", (isSkip || isReopen) && "text-[var(--muted-foreground)]" )} disabled={updateStage.isPending} @@ -350,12 +350,12 @@ export default function DeliverableDetailPage() { {/* Sub-status + blocked hint on their own third line only when present */} {stage.subStatus && ( -
+
{stage.subStatus}
)} {stage.status === "BLOCKED" && ( -
+
Waiting for prerequisite stages
diff --git a/src/app/(app)/projects/[projectId]/page.tsx b/src/app/(app)/projects/[projectId]/page.tsx index 9506c44..f130ed0 100644 --- a/src/app/(app)/projects/[projectId]/page.tsx +++ b/src/app/(app)/projects/[projectId]/page.tsx @@ -59,7 +59,7 @@ const PRIORITY_STYLES: Record = { function MetaField({ label, value }: { label: string; value: string }) { return (
-

+

{label}

{value}

@@ -280,7 +280,7 @@ export default function ProjectDetailPage() { {a.user?.name ?? a.user?.email ?? "Unknown"} diff --git a/src/app/(app)/projects/page.tsx b/src/app/(app)/projects/page.tsx index 6773594..c3d019a 100644 --- a/src/app/(app)/projects/page.tsx +++ b/src/app/(app)/projects/page.tsx @@ -345,7 +345,7 @@ export default function ProjectsPage() { )} -
+
{filtered.length} {projects && filtered.length !== projects.length ? ` of ${projects.length}` @@ -368,7 +368,7 @@ export default function ProjectsPage() {
- + - - {weekDays.map((d) => { @@ -403,7 +403,7 @@ export default function ResourcesPage() { key={d.toISOString()} className="px-2 py-2 text-center" > -
+
{format(d, "EEE")}
); })} -
@@ -484,14 +484,14 @@ export default function ResourcesPage() { >
@@ -456,19 +456,19 @@ function ProjectRow({ project, onDelete }: { project: Project; onDelete: () => v {project.priority} + {project.omgJobNumber ?? ( )} {project.clientTeam ? ( - + {project.clientTeam.name} ) : ( @@ -478,7 +478,7 @@ function ProjectRow({ project, onDelete }: { project: Project; onDelete: () => v {project.status.replace("_", " ")} @@ -551,7 +551,7 @@ function PipelineProgressCell({ progress }: { progress?: PipelineProgress }) { if (completedDeliverables === totalDeliverables && totalDeliverables > 0) { return ( - + ✓ Done ); @@ -565,7 +565,7 @@ function PipelineProgressCell({ progress }: { progress?: PipelineProgress }) { return (
-
+
{dominantStage.name} {dominantStage.count}/{totalDeliverables} diff --git a/src/app/(app)/reports/weekly/[date]/page.tsx b/src/app/(app)/reports/weekly/[date]/page.tsx index e278e44..3226e38 100644 --- a/src/app/(app)/reports/weekly/[date]/page.tsx +++ b/src/app/(app)/reports/weekly/[date]/page.tsx @@ -95,7 +95,7 @@ export default function WeeklyReportPage() {

Dow Jones Studio Tracker

-

+

Confidential — Oliver Agency

diff --git a/src/app/(app)/resources/page.tsx b/src/app/(app)/resources/page.tsx index 2ae17b3..ce869b2 100644 --- a/src/app/(app)/resources/page.tsx +++ b/src/app/(app)/resources/page.tsx @@ -289,7 +289,7 @@ export default function ResourcesPage() { {/* Filter bar */}
- + Role @@ -326,7 +326,7 @@ export default function ResourcesPage() {
- + Group by
+ Resource + Week
-
+
{initialsOf(user.name, user.email)}
{user.name ?? user.email}
-
+
{user.maxCapacity}h/day
@@ -531,7 +531,7 @@ export default function ResourcesPage() { date: day, }); }} - className="flex items-center gap-1 rounded border border-dashed border-[var(--border)] px-1.5 py-0.5 text-[10px] font-semibold text-[var(--muted-foreground)] transition-colors hover:border-[var(--primary)] hover:text-[var(--primary)]" + className="flex items-center gap-1 rounded border border-dashed border-[var(--border)] px-1.5 py-0.5 text-[15px] font-semibold text-[var(--muted-foreground)] transition-colors hover:border-[var(--primary)] hover:text-[var(--primary)]" > Assign @@ -556,7 +556,7 @@ export default function ResourcesPage() { > {weekTotal}h
-
+
/ {weekCap}h
@@ -617,7 +617,7 @@ function FragmentRows({ >
{collapsed ? "▶" : "▼"} {group} · {count} {count === 1 ? "person" : "people"} @@ -642,7 +642,7 @@ function JobChip({ const color = jobColor(jobNumber); return (
@@ -761,7 +761,7 @@ function AssignPopover({
-