Ship the full Communication portal (real SMS API, feature-locked future channels), BFF proxy, docs, snapshot, and phase handover. Co-authored-by: Cursor <cursoragent@cursor.com>
8 lines
330 B
TypeScript
8 lines
330 B
TypeScript
import Link from "next/link";
|
||
import { EmptyState, Button } from "@/components/ds";
|
||
export default function NotFound() {
|
||
return (
|
||
<EmptyState title="صفحه یافت نشد" description="مسیر ارتباطات نامعتبر است." action={<Link href="/communication"><Button>داشبورد</Button></Link>} />
|
||
);
|
||
}
|