TorbatYar/frontend/app/crm/not-found.tsx
Mortezakoohjani e140908034 Ship enterprise CRM frontend with real API wiring and thin app routes.
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>
2026-07-26 20:58:17 +03:30

14 lines
383 B
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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