"use client"; import Link from "next/link"; import BrandingLogo from "@app/components/BrandingLogo"; import LoadingDots from "@app/components/LoadingDots"; import { useEnvContext } from "@app/hooks/useEnvContext"; import { useLicenseStatusContext } from "@app/hooks/useLicenseStatusContext"; export default function OrgRouteLoading() { const { env } = useEnvContext(); const { isUnlocked } = useLicenseStatusContext(); const logoWidth = isUnlocked() ? env.branding.logo?.navbar?.width || 98 : 98; const logoHeight = isUnlocked() ? env.branding.logo?.navbar?.height || 32 : 32; return (