frontend: title

This commit is contained in:
Johannes Lötzsch 2022-03-10 13:38:04 +01:00
parent 1c330ebaef
commit 64be1ecd70
1 changed files with 5 additions and 2 deletions

View File

@ -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 (
<div className={styles.container}>
<Head>
<title>Create Next App</title>
<meta name="description" content="Generated by create next app" />
<title>{ t('Beherbergungssuche') }</title>
<meta name="description" content={ t('Beherbergungssuche') } />
</Head>
<main className={styles.main}>