import React from 'react' import { useTranslation } from 'next-i18next' import * as Dialog from '@radix-ui/react-dialog' import CrossIcon from '~public/icons/Cross.svg' import './index.scss' const AboutModal = () => { const { t } = useTranslation('common') return (
  • {t('modals.about.title')}
  • event.preventDefault()} >
    {t('menu.about')}
    Granblue.team is a tool to save and share team compositions for{' '} Granblue Fantasy. Start adding things to a team and a URL will be created for you to share it wherever you like, no account needed. You can make an account to save any teams you find for future reference, or to keep all of your teams together in one place.
    Credits Granblue.team was built by{' '} @jedmund with a lot of help from{' '} @lalalalinna and{' '} @tarngerine.
    Open Source This app is open source. You can contribute on Github.
    ) } export default AboutModal