import React from "react"; import { useTranslation } from "react-i18next"; import { Namespaces } from "../../i18n/i18n"; import "../../Sass/_homepage.scss"; const HomePage: React.FC = () => { const { t } = useTranslation(Namespaces.Common); const redirect = () => { window.location.href = "/organisations"; }; return (