Introduces modules/hospitality with 54 routes, BFF proxy, capability-gated nav, CRUD factory, and architecture validation docs. Co-authored-by: Cursor <cursoragent@cursor.com>
11 lines
360 B
TypeScript
11 lines
360 B
TypeScript
import Link from "next/link";
|
||
import { Button, EmptyState } from "@/components/ds";
|
||
|
||
export default function HospitalityNotFound() {
|
||
return (
|
||
<div className="flex min-h-[50vh] items-center justify-center p-6">
|
||
<EmptyState title="صفحه یافت نشد" action={<Link href="/hospitality"><Button>بازگشت</Button></Link>} />
|
||
</div>
|
||
);
|
||
}
|