Files
Magent/frontend/app/not-found.tsx
T
Assclaw f852e7c941
Magent CI/CD / verify (push) Failing after 9m34s
Magent CI/CD / deploy-beta (push) Skipped
chore: standardize security and quality foundations
2026-09-17 20:03:47 +12:00

14 lines
356 B
TypeScript

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>
);
}