import { useTranslation } from "react-i18next"; import BuildIt from "#/icons/build-it.svg?react"; import { I18nKey } from "#/i18n/declaration"; export function HeroHeading() { const { t } = useTranslation(); return (

{t(I18nKey.LANDING$TITLE)}

{t(I18nKey.LANDING$SUBTITLE)}{" "} {t(I18nKey.LANDING$START_HELP)}{" "} {t(I18nKey.LANDING$START_HELP_LINK)}

); }