Unify nav across all pages; broaden safety section

- about, terms, enterprise_terms now all import and use shared nav()
- Any future nav change propagates everywhere automatically
- Remove Docs from nav (no docs yet)
- Safety: Hard Bell is for everyone, not just children - reframe copy,
  update cards and bottom callout to reflect universal applicability
This commit is contained in:
Will Anderson
2026-04-29 17:16:49 -05:00
parent cc20f10d6d
commit e9209bccc1
4 changed files with 23 additions and 45 deletions
+2 -1
View File
@@ -2,9 +2,10 @@
// Returns complete HTML using the shared page shell from styles.el.
from styles import { page_open, page_close }
from nav import { nav }
fn terms_page() -> String {
return page_open() + terms_body() + page_close()
return page_open() + nav() + terms_body() + page_close()
}
fn terms_body() -> String {