Add Next.js frontends with health endpoints

This commit is contained in:
Alexa Amundson
2025-11-21 00:18:26 -06:00
parent 6722782f47
commit 5f958e3755
28 changed files with 397 additions and 0 deletions

12
apps/web/app/page.tsx Normal file
View File

@@ -0,0 +1,12 @@
export default function Page() {
return (
<div>
<h1>BlackRoad Operating System</h1>
<p>
A multi-service, agent-native OS for orchestrating AI, compute,
and compliance.
</p>
<p>Deployed on Railway. Fronted by Cloudflare. Driven by you.</p>
</div>
);
}