mirror of
https://github.com/GSA/notifications-admin.git
synced 2026-08-15 07:18:58 -04:00
29 lines
654 B
Python
29 lines
654 B
Python
def features_nav():
|
|
return [
|
|
{
|
|
"name": "Features",
|
|
"link": "main.features",
|
|
},
|
|
{
|
|
"name": "Roadmap",
|
|
"link": "main.roadmap",
|
|
},
|
|
{
|
|
"name": "Security",
|
|
"link": "main.security",
|
|
},
|
|
{
|
|
"name": "Performance",
|
|
"link": "https://www.gov.uk/performance/govuk-notify",
|
|
"external_link": True,
|
|
},
|
|
{
|
|
"name": "Terms of use",
|
|
"link": "main.terms",
|
|
},
|
|
{
|
|
"name": "Using Notify",
|
|
"link": "main.using_notify",
|
|
},
|
|
]
|