Scaffold monorepo dev setup

This commit is contained in:
dirtydishes 2025-12-27 18:45:26 -05:00
commit d2a09e095a
47 changed files with 1033 additions and 0 deletions

11
apps/web/app/page.tsx Normal file
View file

@ -0,0 +1,11 @@
export default function HomePage() {
return (
<main className="page">
<section className="panel">
<h1>Islandflow</h1>
<p>Realtime options flow + off-exchange analysis.</p>
<p>UI scaffold is up; live data wiring next.</p>
</section>
</main>
);
}