import React from 'react'; import Image from 'next/image'; import packageJson from '../../package.json'; import WindowButtons from './WindowButtons'; export const setAboutDialogVisible = (visible: boolean) => { const dialog = document.getElementById('about_window'); if (visible) { (dialog as HTMLDialogElement)?.showModal(); } else { (dialog as HTMLDialogElement)?.close(); } }; export const AboutWindow = () => { return (
setAboutDialogVisible(false)} />
App Logo

Readest

Bilingify LLC

Version {packageJson.version}

© {new Date().getFullYear()} Bilingify LLC. All rights reserved.

This software is licensed under the{' '} GNU Affero General Public License v3.0 . You are free to use, modify, and distribute this software under the terms of the AGPL v3 license. Please see the license for more details.

Source code is available at{' '} GitHub .

); };