import { useState } from 'react'; import { Button, TextArea } from './styles'; import { MainContainer } from '../../components/MainContent/styles'; import { Send } from 'lucide-react'; import { Paragraph } from '../../components/Paragraph/styles'; import { useTranslation } from 'react-i18next'; export default function Contact() { const { t } = useTranslation(); const emailAddress = import.meta.env.VITE_GIV_EMAIL; const [typedText, setTypedText] = useState(''); function handleSubmit() { const mailToTrigger = 'mailto:' + emailAddress + '&subject=I visited your website!&body=' + typedText; window.location.href = mailToTrigger } return (

{t("contact")}

{t("contactInfo")}