Skip to content

Commit 8842a51

Browse files
committed
Move Executive Summary above KPI value boxes
- Reorder Executive Summary tab content to show summary text first - KPI cards now appear after the executive summary - Better information hierarchy - narrative context before metrics
1 parent dbc624b commit 8842a51

File tree

1 file changed

+8
-7
lines changed
  • board-packet-generator

1 file changed

+8
-7
lines changed

board-packet-generator/app.R

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1070,6 +1070,14 @@ ui <- fluidPage(
10701070
"Executive Summary",
10711071
icon = icon("chart-line"),
10721072

1073+
# Executive Summary (moved to top)
1074+
div(
1075+
class = "insight-callout",
1076+
style = "margin-bottom: 2rem;",
1077+
h4("Executive Summary"),
1078+
p(textOutput("executive_summary"))
1079+
),
1080+
10731081
# Key Financial Metrics Grid with semantic colors
10741082
uiOutput("kpi_cards"),
10751083

@@ -1092,13 +1100,6 @@ ui <- fluidPage(
10921100
plotOutput("financial_chart", height = "350px")
10931101
),
10941102

1095-
# Executive Summary
1096-
div(
1097-
class = "insight-callout",
1098-
h4("Executive Summary"),
1099-
p(textOutput("executive_summary"))
1100-
),
1101-
11021103
br(),
11031104

11041105
# Financial Summary Table

0 commit comments

Comments
 (0)