import React from 'react' import { useTranslations } from 'next-intl' import classNames from 'classnames' import LinkItem from '../LinkItem' import DiscordIcon from '~public/icons/discord.svg' import GithubIcon from '~public/icons/github.svg' import styles from './index.module.scss' interface Props {} const AboutPage: React.FC = (props: Props) => { const common = useTranslations('common') const about = useTranslations('about') const classes = classNames(styles.about, 'PageContent') return (

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

{/* TODO: Refactor to about.rich() */} {about("about.subtitle")} {/* 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')}

} />

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

{/* TODO: Refactor to about.rich() */} {about('about.credits.maintainer')} {/* Granblue.team was built and is maintained by{' '} @jedmund . */}

{/* TODO: Refactor to about.rich() */} {about('about.credits.assistance')} {/* Many thanks to{' '} @lalalalinna {' '} and{' '} @tarngerine , who both provided a lot of help and advice as I was ramping up. */}

{/* TODO: Refactor to about.rich() */} {about('about.credits.support')} {/* 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')}

{/* TODO: Refactor to about.rich() */} {about('about.license.license')} {/* This app is licensed under{' '} GNU AGPLv3 . */}

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

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

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

) } export default AboutPage