chore(v2): establish protocol and test foundation

This commit is contained in:
2026-07-27 18:44:47 +02:00
parent 33b0c21292
commit 791f4526f9
86 changed files with 4060 additions and 2582 deletions
+16
View File
@@ -0,0 +1,16 @@
export function App() {
return (
<main className="min-h-screen bg-slate-950 p-8 text-slate-100">
<section className="mx-auto max-w-3xl rounded-xl border border-slate-800 bg-slate-900 p-8">
<p className="text-sm font-semibold uppercase tracking-widest text-emerald-400">
Backup Tool v2
</p>
<h1 className="mt-3 text-3xl font-bold">Protocol foundation ready</h1>
<p className="mt-4 text-slate-300">
Operator workflows are added as their versioned API contracts become
executable.
</p>
</section>
</main>
);
}