'use client' import { Container, Stack, Title, Text, Grid, ThemeIcon, List, Box } from '@pikku/mantine/core' import { useI18n } from "@/context/i18n-provider" const AboutPage: React.FunctionComponent = () => { const t = useI18n() return ( {t('website.about.title')} {t('website.about.description')} {t('website.about.mission.title')} {t('website.about.mission.description')} {t('website.about.howitworks.title')} {1} {t('website.about.howitworks.step1.title')} {t('website.about.howitworks.step1.description')} {2} {t('website.about.howitworks.step2.title')} {t('website.about.howitworks.step2.description')} {3} {t('website.about.howitworks.step3.title')} {t('website.about.howitworks.step3.description')} {t('website.about.whychoose.title')} {t('website.about.whychoose.fast.summary')} {t('website.about.whychoose.free.summary')} {t('website.about.whychoose.secure.summary')} {t('website.about.whychoose.support.summary')} {t('website.about.cta.title')} {t('website.about.cta.description')} ) } export default AboutPage