From efcc748adbc6e21863f93d4cb5b513566ac70c17 Mon Sep 17 00:00:00 2001 From: Hermes Date: Sat, 1 Aug 2026 02:00:40 +0000 Subject: [PATCH] T5: remove stale T1 stub index.tsx (replaced by _app/index.tsx) --- apps/web/src/routes/index.tsx | 17 ----------------- 1 file changed, 17 deletions(-) delete mode 100644 apps/web/src/routes/index.tsx diff --git a/apps/web/src/routes/index.tsx b/apps/web/src/routes/index.tsx deleted file mode 100644 index 79264f5..0000000 --- a/apps/web/src/routes/index.tsx +++ /dev/null @@ -1,17 +0,0 @@ -import { createRoute } from "@tanstack/react-router"; -import { Route as rootRoute } from "./__root"; - -function HomePage() { - return ( -
-

Project E — UI Redesign

-

Phase 1 Scaffold

-
- ); -} - -export const Route = createRoute({ - getParentRoute: () => rootRoute, - path: "/", - component: HomePage, -});