diff --git a/.github/scripts/audit-app-zone-shell.mjs b/.github/scripts/audit-app-zone-shell.mjs index 3e8f355e5..ceca682d2 100644 --- a/.github/scripts/audit-app-zone-shell.mjs +++ b/.github/scripts/audit-app-zone-shell.mjs @@ -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) { diff --git a/app/public/assets/posts/cancelling-fuel-duty-rise.webp b/app/public/assets/posts/cancelling-fuel-duty-rise.webp new file mode 100644 index 000000000..a3b027d4b Binary files /dev/null and b/app/public/assets/posts/cancelling-fuel-duty-rise.webp differ diff --git a/app/src/data/apps/apps.json b/app/src/data/apps/apps.json index 4f820ffb6..8b1130712 100644 --- a/app/src/data/apps/apps.json +++ b/app/src/data/apps/apps.json @@ -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", diff --git a/changelog_entry.yaml b/changelog_entry.yaml index 493eca708..dc4348af3 100644 --- a/changelog_entry.yaml +++ b/changelog_entry.yaml @@ -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 diff --git a/website/src/data/appZoneRoutes.ts b/website/src/data/appZoneRoutes.ts index ec719a304..d9a799e3e 100644 --- a/website/src/data/appZoneRoutes.ts +++ b/website/src/data/appZoneRoutes.ts @@ -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",