Intelligence
Artifacts
Browse the repository, read documents, and manage the governance folders. Source, runtime, and infrastructure are read-only.
Repository
repositories/aaf-holdings/hq01/app/not-found.tsx
902 B
import Link from "next/link";
import { Compass } from "lucide-react";
export default function NotFound() {
return (
<div className="flex min-h-[60vh] flex-col items-center justify-center text-center">
<div className="mb-5 flex h-14 w-14 items-center justify-center rounded-full bg-secondary">
<Compass className="h-6 w-6 text-muted-foreground" />
</div>
<h1 className="text-2xl font-semibold tracking-tight">Not in HQ01</h1>
<p className="mt-2 max-w-sm text-[15px] text-muted-foreground">
This record doesn't exist in the repository — or it hasn't been
created yet.
</p>
<Link
href="/"
className="mt-6 inline-flex h-9 items-center rounded-md bg-primary px-5 text-sm font-medium text-primary-foreground transition-colors hover:bg-primary/90"
>
Back to Dashboard
</Link>
</div>
);
}
root · /srv/aaf