feat: Trends landing page with directorate overview chart (Task E.3)

This commit is contained in:
Andrew Charlwood
2026-02-07 22:19:52 +00:00
parent 6c5f9be776
commit c253e05046
7 changed files with 237 additions and 22 deletions
+3 -1
View File
@@ -10,6 +10,7 @@ from dash_app.components.chart_card import make_chart_card
from dash_app.components.footer import make_footer
from dash_app.components.modals import make_modals
from dash_app.components.trust_comparison import make_tc_landing, make_tc_dashboard
from dash_app.components.trends import make_trends_landing, make_trends_detail
app = Dash(
__name__,
@@ -70,7 +71,8 @@ app.layout = dmc.MantineProvider(
id="trends-view",
style={"display": "none"},
children=[
html.H3("Trends", style={"padding": "24px"}),
make_trends_landing(),
make_trends_detail(),
],
),
],