import React from 'react' import Link from 'next/link' import { Trans, 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') const { t: about } = useTranslation('about') 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.

{about('about.explanation.0')}

{about('about.explanation.1')}

{about('about.feedback.title')}

{about('about.feedback.explanation')}

{about('about.feedback.solicit')}

granblue-tools

{about('about.credits.title')}

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!)

{about('about.contributing.title')}

{about('about.contributing.explanation')}

{about('about.license.title')}

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

{about('about.license.explanation')}

{about('about.copyright.title')}

{about('about.copyright.explanation')}

) } export default AboutPage