Most of the landing pages are missing breadcrumbs. For example, the homepage currently looks like this:

The Operating Budget landing page:

The cabinets page looks like it's trying to add breadcrumbs, but not in the correct format:

In order to add breadcrumbs, you should use the existing breadcrumbs component, in a format that looks like this:
{
"breadcrumbs": [
{
"title": "Home",
"url": "/"
},
{
"title": "Budget",
"url": "/budget"
},
{
"title": "Operating Budget",
"url": "/operating-budget",
"local": true
},
{
"current": "Cabinets"
},
{
"published": "3/28/17"
}
]
}