import {discordLink, formLink, githubRepo} from 'common/constants' import Link from 'next/link' import {ReactNode} from 'react' import {GeneralButton} from 'web/components/buttons/general-button' import {PageBase} from 'web/components/page-base' import {SEO} from 'web/components/SEO' import {useT} from 'web/lib/locale' export const AboutBlock = (props: {text: ReactNode; title: string}) => { const {text, title} = props return (

{title}

{text}

) } export default function About() { const t = useT() return (

{t('about.title', 'Why Choose Compass?')}

{t('about.subtitle', 'To find your people with ease.')}

{t('about.block.democratic.prefix', 'Governed and ')} {t('about.block.democratic.link_voted', 'voted')} {t( 'about.block.democratic.middle', ' by the community, while ensuring no drift through our ', )} {t('about.block.democratic.link_constitution', 'constitution')} {t('about.block.democratic.suffix', '.')} } /> {/**/} {/* {t('about.block.press.text', 'Explore the latest press stories ')}*/} {/* {t('about.block.press.link', 'here')}.*/} {/*}*/} {/*/>*/}

{t('about.help.title', 'Help Compass')}

{t('about.suggestions.title', 'Give Suggestions or Contribute')}

{t( 'about.suggestions.text', 'Give suggestions or let us know you want to help through this form!', )}

{t('about.dev.title', 'Develop the App')}

{t( 'about.dev.text', 'The full source code and instructions are available on GitHub.', )}

{t('about.join.title', 'Join the Community')}

{t('about.join.text', "Let's shape the platform together.")}

{/**/} {/* Join on Stoat / Revolt*/} {/**/}

{t('about.donate.text', 'Support our not-for-profit infrastructure.')}

{/**/} {/* Donate on Patreon*/} {/**/} {/**/} {/* Donate on PayPal*/} {/**/} {/**/} {/* Donate on Ko-fi*/} {/**/} {/**/} {/* Donate on GitHub*/} {/**/} {/**/} {/*GitHub has increased transparency,
but requires an account.*/} {/*
*/}
{t('about.final.title', 'Tell Your Friends and Family')}

{t('about.final.text', 'Thank you for supporting our mission!')}

) }