import { Button, Link, Modal, ModalDialog } from "@mui/joy"; import { useTranslation } from "react-i18next"; import Icon from "./Icon"; interface Props { onClose: () => void; } const AboutDialog: React.FC = (props: Props) => { const { onClose } = props; const { t } = useTranslation(); return (
{t("common.about")}

Slash: An open source, self-hosted links shortener and sharing platform.

See more in GitHub
); }; export default AboutDialog;