import { X } from "@phosphor-icons/react"; import { useTranslation } from "react-i18next"; import paths from "@/utils/paths"; import { Link } from "react-router-dom"; import ModalWrapper from "@/components/ModalWrapper"; export default function UnauthenticatedHubModal({ show, onClose }) { const { t } = useTranslation(); if (!show) return null; return (

{t("community_hub.publish.generic.unauthenticated.title")}

{t("community_hub.publish.generic.unauthenticated.description")}

{t("community_hub.publish.generic.unauthenticated.button")}
); }