import logo from '../assets/logo.png' import './Modal.css' import './AboutModal.css' interface AboutModalProps { onClose: () => void } // AGPL-3.0 itself recommends this: "if your software can interact with // users remotely through a computer network, you should also make sure // that it provides a way for users to get its source... its interface // could display a 'Source' link" -- this modal is that link, not just a // courtesy credits screen. const SOURCE_URL = 'https://git.darksingularity.org/DarkSingularity/ds-chat' export function AboutModal({ onClose }: AboutModalProps) { return (
e.stopPropagation()}>

About

DS Chat
Version {__APP_VERSION__}

Licensed under the{' '} GNU Affero General Public License v3.0 (or later) .

Source code

) }