feat(release): publish minimal self-contained Magent source

This commit is contained in:
Magent release tooling
2026-09-19 16:58:12 +12:00
commit 5fa5d45535
272 changed files with 79305 additions and 0 deletions
+12
View File
@@ -0,0 +1,12 @@
"use client";
import AdminShell from "../../ui/AdminShell";
import AdminDiagnosticsPanel from "../../ui/AdminDiagnosticsPanel";
export default function AdminDiagnosticsPage() {
return (
<AdminShell title="Diagnostics" subtitle="Check connections and investigate service problems.">
<AdminDiagnosticsPanel />
</AdminShell>
);
}