'use client'; import React from 'react'; import Link from 'next/link'; import { useT } from '@/i18n'; import AnimateOnScroll from '@/components/AnimateOnScroll'; import s from '../content.module.css'; export default function HelpPage() { const t = useT(); const topics = [ { icon: '\u{1F6D2}', titleKey: 'help_t1_title', descKey: 'help_t1_desc' }, { icon: '\u{1F4B1}', titleKey: 'help_t2_title', descKey: 'help_t2_desc' }, { icon: '\u{1F4B3}', titleKey: 'help_t3_title', descKey: 'help_t3_desc' }, { icon: '\u{1F512}', titleKey: 'help_t4_title', descKey: 'help_t4_desc' }, { icon: '\u{1F4F1}', titleKey: 'help_t5_title', descKey: 'help_t5_desc' }, { icon: '\u{2753}', titleKey: 'help_t6_title', descKey: 'help_t6_desc' }, ]; return ( <>

{t('help_title')}

{t('help_subtitle')}

{topics.map((tp, i) => (
{tp.icon}

{t(tp.titleKey)}

{t(tp.descKey)}

))}

{t('help_contact_hint')}

{t('help_contact_link')} →
); }