import { Head } from '@inertiajs/react' import { useTranslation } from 'react-i18next' import { IconExternalLink } from '@tabler/icons-react' import SettingsLayout from '~/layouts/SettingsLayout' export default function SupportPage() { const { t } = useTranslation() return (

{t('support.title')}

{t('support.subtitle')}

{/* Ko-fi */}

{t('support.kofiTitle')}

{t('support.kofiDescription')}

{t('support.kofiButton')}
{/* Rogue Support */}

{t('support.rogueTitle')}

{t('support.rogueBannerAlt')}

{t('support.rogueDescription')}

{t('support.rogueButton')}
{/* Other Ways to Help */}

{t('support.otherTitle')}

) }