diff --git a/ml_peg/app/build_app.py b/ml_peg/app/build_app.py index 9d98d0816..e01256240 100644 --- a/ml_peg/app/build_app.py +++ b/ml_peg/app/build_app.py @@ -1305,9 +1305,26 @@ def select_page( ) if pathname in (None, "", "/", "/summary"): + summary_counts = ( + f"{len(category_views)} categories ยท {len(all_apps)} benchmarks" + ) return Div( [ H1("Categories Summary"), + Div( + summary_counts, + style={ + "fontSize": "14px", + "fontWeight": "600", + "color": "#212529", + "backgroundColor": "#f1f3f5", + "border": "1px solid #dee2e6", + "borderRadius": "6px", + "padding": "8px 14px", + "marginBottom": "12px", + "width": "fit-content", + }, + ), Div( "Scores range from 0 (worst) to 1 (best).", style={