import React from 'react' import Link from 'next/link' import { useTranslation } from 'next-i18next' import { Dialog, DialogClose, DialogTitle, DialogTrigger, } from '~components/Dialog' import DialogContent from '~components/DialogContent' import CrossIcon from '~public/icons/Cross.svg' import ShareIcon from '~public/icons/Share.svg' import DiscordIcon from '~public/icons/discord.svg' import GithubIcon from '~public/icons/github.svg' import './index.scss' const AboutModal = () => { const { t } = useTranslation('common') return (
  • {t('modals.about.title')}
  • event.preventDefault()} onEscapeKeyDown={() => {}} >

    Granblue.team is a tool to save and share team comps for{' '} Granblue Fantasy .

    Start adding to a team and a URL will be created for you to share wherever you like, no account needed.

    However, if you do make an account, you can save any teams you find for future reference and keep all of your teams together in one place.

    Feedback

    This is an evolving project so feedback and suggestions are greatly appreciated!

    If you have a feature request, would like to report a bug, or are enjoying the tool and want to say thanks, come hang out in Discord!

    granblue-tools

    Credits

    Granblue.team was built by{' '} @jedmund {' '} with a lot of help from{' '} @lalalalinna {' '} and{' '} @tarngerine .

    Many thanks also go to Disinfect, Slipper, Jif, Bless, 9highwind, and everyone else in{' '} Fireplace {' '} that helped with bug testing and feature requests. (P.S. We're recruiting!) And yoey, but he won't join our crew.

    Contributing

    This app is open source and licensed under{' '} GNU AGPLv3 . Plainly, that means you can download the source, modify it, and redistribute it if you attribute this project, use the same license, and keep it open source. You can contribute on Github.

    ) } export default AboutModal