feat: add footer component and complete Phase 2 static layout (Task 2.3)

This commit is contained in:
Andrew Charlwood
2026-02-06 13:24:33 +00:00
parent 07a9d00538
commit 3568e03fc2
4 changed files with 59 additions and 2 deletions
+10
View File
@@ -0,0 +1,10 @@
"""Page footer component."""
from dash import html
def make_footer():
"""Build the page footer matching 01_nhs_classic.html."""
return html.Footer(
className="page-footer",
children="NHS Norfolk and Waveney ICB \u2014 High Cost Drugs Analysis",
)