Connect all CRM pages to the BFF and CRM service, add module docs, and mark CRM available in the SuperApp catalog. Co-authored-by: Cursor <cursoragent@cursor.com>
14 lines
383 B
TypeScript
14 lines
383 B
TypeScript
import Link from "next/link";
|
||
import { Button, EmptyState } from "@/components/ds";
|
||
|
||
export default function CrmNotFound() {
|
||
return (
|
||
<div className="flex min-h-[50vh] items-center justify-center p-6">
|
||
<EmptyState
|
||
title="صفحه CRM یافت نشد"
|
||
action={<Link href="/crm/hub"><Button>بازگشت به CRM</Button></Link>}
|
||
/>
|
||
</div>
|
||
);
|
||
}
|