import { Mail } from 'lucide-react' import { useTranslation } from 'react-i18next' import { Button } from '@components/ui/button' import { CONTACT_EMAIL, SOCIAL_LINKS } from '@lib/constants' import type { FC } from 'react' export const ContactSection: FC = () => { const { t } = useTranslation() return (

{t('contact.title')}

{t('contact.subtitle')}

{t('contact.or')}

) }