From 06f71814c4a8844717af8037558e09f1449bda09 Mon Sep 17 00:00:00 2001 From: Max Ghenis Date: Fri, 15 May 2026 06:57:14 -0400 Subject: [PATCH] Drop in-page Masthead (PolicyEngineShell provides PE branding) The PolicyEngineShell wrap in app/layout.tsx already renders the PolicyEngine site header. The in-page Masthead component added a second PolicyEngine-branded bar on top of that, with a 'Data & Analysis' tagline. Drop it to match the canonical pattern. Co-Authored-By: Claude Opus 4.7 (1M context) --- .gitignore | 2 ++ frontend/src/App.tsx | 4 ---- 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/.gitignore b/.gitignore index 858c840..3a65b7e 100644 --- a/.gitignore +++ b/.gitignore @@ -16,3 +16,5 @@ coverage/ .vercel/ .turbo/ next-env.d.ts +.vercel +.env*.local diff --git a/frontend/src/App.tsx b/frontend/src/App.tsx index 7706255..0fa27bd 100644 --- a/frontend/src/App.tsx +++ b/frontend/src/App.tsx @@ -3,7 +3,6 @@ import { useEffect, useState, useMemo, useCallback, lazy, Suspense } from "react"; import type { CSSProperties } from "react"; import { useData } from "./data/useData"; -import Masthead from "./components/Masthead"; import Hero from "./components/Hero"; import StatsBanner from "./components/StatsBanner"; import ControlBar from "./components/ControlBar"; @@ -165,7 +164,6 @@ export default function App() { if (loading) { return ( <> - {!isIframed && }
@@ -178,7 +176,6 @@ export default function App() { if (error) { return ( <> - {!isIframed && }

Error loading data: {error}

@@ -189,7 +186,6 @@ export default function App() { return ( <> - {!isIframed && }