import React from 'react' import Link from 'next/link' import { useRouter } from 'next/router' import { useTranslation } from 'next-i18next' import ShareIcon from '~public/icons/Share.svg' import DiscordIcon from '~public/icons/discord.svg' import GithubIcon from '~public/icons/github.svg' import './index.scss' interface Props {} const AboutPage: React.FC = (props: Props) => { const { t: common } = useTranslation('common') return (

{common('about.segmented_control.about')}

Granblue.team is a tool to save and share team compositions for{' '} Granblue Fantasy , a social RPG from Cygames.

To get started, all you have to do is add an item to a team and a URL will be created for you to share wherever you like, no account needed.

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

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.

Feedback and suggestions are greatly appreciated!

granblue-tools

Credits

Granblue.team was built and is maintained by{' '} @jedmund .

Many thanks to{' '} @lalalalinna {' '} and{' '} @tarngerine , who both provided a lot of help and advice as I was ramping up.

Many thanks also go to everyone in{' '} Fireplace {' '} and the granblue-tools Discord for all of their help with with bug testing, feature requests, and moral support. (P.S. We're recruiting!)

Contributing

If you know how to program, this app is completely open-source. There's an abundance of features to build and bugs to fix, so help is always greatly appreciated!

License

This app is licensed under{' '} GNU AGPLv3 .

Plainly, that means you can download the source, modify it, and redistribute it as long as you attribute this project, use the same license, and keep your derivative work open source as well.

) } export default AboutPage