"use client"; import Link from "next/link"; import { useMe } from "@/hooks/useMe"; import { HOSPITALITY_PORTAL } from "@/modules/hospitality/constants/portals"; import { Card, CardContent, Button, LoadingState, ErrorState } from "@/components/ds"; export const HospitalityHub = function HospitalityHubPage() { const { me, loading, error, reload } = useMe(); if (loading) return ; if (error) return ; if (!me?.current_tenant_id) { return ; } return (

تربت فود

پلتفرم مهمان‌نوازی سازمانی

{HOSPITALITY_PORTAL.label}

{HOSPITALITY_PORTAL.description}

); }; export default HospitalityHub;