Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .github/scripts/audit-app-zone-shell.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -46,11 +46,13 @@ const TOP_SHELL_SELECTOR =
// /uk/student-loan-visualisation — PolicyEngine/student-loan-visualisation#3
// /us/obbba-household-explorer — PolicyEngine/obbba-household-by-household#240
// /uk/uc-rebalancing — PolicyEngine/uc-rebalancing
// /uk/cancelling-fuel-duty-rise — PolicyEngine/cancelling-fuel-duty-rise
export const SHELL_BRAND_EXEMPT_SOURCES = [
"/uk/scotland-income-tax-reform",
"/uk/student-loan-visualisation",
"/us/obbba-household-explorer",
"/uk/uc-rebalancing",
"/uk/cancelling-fuel-duty-rise",
];

export function isShellBrandExempt(source) {
Expand Down
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
13 changes: 13 additions & 0 deletions app/src/data/apps/apps.json
Original file line number Diff line number Diff line change
Expand Up @@ -175,6 +175,19 @@
"date": "2026-06-01 12:00:00",
"authors": ["vahid-ahmadi"]
},
{
"type": "iframe",
"slug": "cancelling-fuel-duty-rise",
"title": "UK fuel duty rise cancellation analysis dashboard",
"description": "PolicyEngine estimated the fiscal cost and household impact of cancelling the Autumn Budget 2025 fuel-duty rise — the staged unwinding of the 5p cut and the April 2027 RPI uprating",
"source": "https://cancelling-fuel-duty-rise.vercel.app/uk/cancelling-fuel-duty-rise",
"tags": ["uk", "featured", "policy", "interactives"],
"countryId": "uk",
"displayWithResearch": true,
"image": "cancelling-fuel-duty-rise.webp",
"date": "2026-06-01 12:00:00",
"authors": ["vahid-ahmadi"]
},
{
"type": "iframe",
"slug": "wv-sb392-tax-cut",
Expand Down
1 change: 1 addition & 0 deletions changelog_entry.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,4 @@
changes:
added:
- Add UK Universal Credit rebalancing analysis dashboard at /uk/uc-rebalancing
- Add UK fuel duty rise cancellation analysis dashboard at /uk/cancelling-fuel-duty-rise
5 changes: 5 additions & 0 deletions website/src/data/appZoneRoutes.ts
Original file line number Diff line number Diff line change
Expand Up @@ -179,6 +179,11 @@ export const appZoneRoutes: AppZoneRoute[] = [
source: "/uk/uc-rebalancing",
destination: "https://uc-rebalancing.vercel.app/uk/uc-rebalancing",
},
{
source: "/uk/cancelling-fuel-duty-rise",
destination:
"https://cancelling-fuel-duty-rise.vercel.app/uk/cancelling-fuel-duty-rise",
},
{
source: "/us/aca-calc",
destination: "https://aca-calc.vercel.app/us/aca-calc",
Expand Down
Loading