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

تربت درایور

پلتفرم لجستیک و پیک سازمانی

{DELIVERY_PORTAL.label}

{DELIVERY_PORTAL.description}

); }; export default DeliveryHub;