T5: remove stale T1 stub index.tsx (replaced by _app/index.tsx)

This commit is contained in:
Hermes
2026-08-01 02:00:40 +00:00
parent e86a7c0672
commit efcc748adb
-17
View File
@@ -1,17 +0,0 @@
import { createRoute } from "@tanstack/react-router";
import { Route as rootRoute } from "./__root";
function HomePage() {
return (
<div className="flex flex-col items-center justify-center min-h-screen p-8">
<h1 className="text-4xl font-bold mb-4">Project E UI Redesign</h1>
<p className="text-lg text-muted-foreground">Phase 1 Scaffold</p>
</div>
);
}
export const Route = createRoute({
getParentRoute: () => rootRoute,
path: "/",
component: HomePage,
});