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
+13
View File
@@ -0,0 +1,13 @@
import Link from "next/link";
import PageHeading from "./ui/PageHeading";
export default function NotFound() {
return (
<main className="card">
<PageHeading title="Page not found" description="This link may have moved or no longer be available." />
<p>
<Link href="/"> Back to my requests</Link>
</p>
</main>
);
}