import React from "react"; import { useTranslation } from "react-i18next"; import { Trans } from "react-i18next"; import Modal from "../ui/Modal"; const AboutModal = ({ show, setShow }) => { const { t } = useTranslation(); return ( } >

Air Board Game is a plateform designed to play any board games with your friends online. For more information or to access source code visit Github.

RGPD

No personnal data are collected. When you use your email to login, this information is lost and not used for anything else than sending you an authentication link.

Credits

Thanks to everybody !

); }; export default AboutModal;