import Link from 'next/link' import {Col} from 'web/components/layout/col' import {Row} from 'web/components/layout/row' import {PageBase} from 'web/components/page-base' import {SEO} from 'web/components/SEO' import {useT} from 'web/lib/locale' export default function HelpPage() { const t = useT() return (

{t('help.title', 'Help & support')}

{t( 'help.intro', 'Having trouble or have questions? This page lists the fastest ways to get help and find answers.', )}

{t('help.links.title', 'Quick links')}

  • {t('help.links.read_prefix', 'Read the ')} {t('nav.faq', 'FAQ')} {t('help.links.read_suffix', ' for common questions')}
  • {t('help.links.contact_prefix', 'Contact us via the ')} {t('security.how.contact_form', 'contact form')}
  • {t('help.links.consult_prefix', 'See our ')} {t('privacy.title', 'Privacy Policy')} {t('help.links.consult_and', ' and ')} {t('terms.title', 'Terms of service')}

{t('help.report.title', 'Report a problem')}

{t( 'help.report.paragraph_prefix', "If something isn't working as expected, please include as many details as possible (what you did, what you expected, what happened, screenshots). The fastest way to reach us is the ", )} {t('security.how.contact_form', 'contact form')} {t('help.report.paragraph_suffix', '.')}

{t('help.account.title', 'Account & profile issues')}

  • {t( 'help.account.login_issue', "Can't sign in? Try signing out and signing back in, or refresh the page and try again.", )}
  • {t( 'help.account.profile_update', 'Profile updates not appearing? Wait a few seconds and refresh. If the problem persists, report it via the contact form.', )}
  • {t( 'help.account.delete_instructions', "Want to delete your account? Go to profile settings, click the three-dot menu at the top-right, then select 'Delete account'", )}

{t('security.title', 'Security')}

{t( 'help.security.paragraph_prefix', "If you believe you've discovered a security vulnerability, please report it responsibly. See our ", )} {t('security.title', 'Security')} {t('help.security.paragraph_suffix', ' for details and ways to contact us.')}

{t('help.need_help.title', 'Need help?')}

{t('help.actions.contact_button', 'Contact us')} {t('help.actions.faq_button', 'View FAQ')}
) }