Final touches

This commit is contained in:
2024-06-11 19:16:44 +01:00
parent ae34843303
commit 95f86f13ba
3 changed files with 12 additions and 1 deletions
+4
View File
@@ -168,5 +168,9 @@
"error": "An error occurred while sending your message. Please try again later.",
"empty": "Please fill out all the fields before sending the message."
}
},
"footer": {
"rights": "© 2024 LK Results. All rights reservered."
}
}
+4
View File
@@ -149,5 +149,9 @@
"error": "Ocorreu um erro ao enviar a sua mensagem. Por favor, tente novamente mais tarde.",
"empty": "Por favor, preencha todos os campos antes de enviar a mensagem."
}
},
"footer": {
"rights": "©2024 Direitos reservados a LK Results"
}
}
+4 -1
View File
@@ -1,7 +1,10 @@
import { useTranslation } from "react-i18next";
import { FaFacebook, FaLinkedin, FaInstagram } from "react-icons/fa";
import { FaXTwitter } from "react-icons/fa6";
const Footer = () => {
const { t } = useTranslation();
return (
<footer className="flex flex-col space-y-10 justify-center m-10">
<div className="flex justify-center space-x-5">
@@ -31,7 +34,7 @@ const Footer = () => {
</a> */}
</div>
<p className="text-center text-gray-400 font-medium">
&copy; 2024 LK Results. All rights reservered.
{t("footer.rights")}
</p>
</footer>
);