chore: standardize security and quality foundations
Magent CI/CD / verify (push) Failing after 9m34s
Magent CI/CD / deploy-beta (push) Skipped

This commit is contained in:
2026-09-17 20:03:47 +12:00
parent 5639dbcb83
commit f852e7c941
127 changed files with 17928 additions and 10741 deletions
+6 -4
View File
@@ -1,11 +1,13 @@
import Link from 'next/link'
import PageHeading from './ui/PageHeading'
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>
<p>
<Link href="/"> Back to my requests</Link>
</p>
</main>
)
);
}