feat(frontend): wire Vite app to FastAPI parser with NDJSON streaming + Upload page

This commit is contained in:
Tyler
2026-06-19 17:31:59 -06:00
parent 999889ecb3
commit 3d3bdfb07c
44 changed files with 7811 additions and 0 deletions
+15
View File
@@ -0,0 +1,15 @@
import { Outlet } from "react-router-dom";
import { Sidebar } from "./Sidebar";
export function Layout() {
return (
<div className="relative min-h-screen z-10">
<Sidebar />
<main className="md:pl-60">
<div className="mx-auto max-w-[1400px] px-8 py-10">
<Outlet />
</div>
</main>
</div>
);
}