From 64be1ecd70a6b4d2bd506163c071df4a16779bcc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Johannes=20L=C3=B6tzsch?= Date: Thu, 10 Mar 2022 13:38:04 +0100 Subject: [PATCH] frontend: title --- frontend/search/pages/index.tsx | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/frontend/search/pages/index.tsx b/frontend/search/pages/index.tsx index 495f677..570fad8 100644 --- a/frontend/search/pages/index.tsx +++ b/frontend/search/pages/index.tsx @@ -2,13 +2,16 @@ import type { NextPage } from 'next' import Head from 'next/head' import HostOfferLookupWrapper from '../components/ngo/HostOfferLookupWrapper' import styles from '../styles/Home.module.css' +import { useTranslation } from 'react-i18next' const Home: NextPage = () => { + const { t } = useTranslation() + return (
- Create Next App - + { t('Beherbergungssuche') } +