import React from 'react' import Head from 'next/head' import Link from 'next/link' import Router from 'next/router' import useTranslation from 'next-translate/useTranslation' import styles from './header.module.css' export default function Header() { const { t, lang } = useTranslation() const title = t('common:title') function changeToEn() { Router.push('/', undefined, { locale: 'en' }) } return ( <> {title} | ({lang.toUpperCase()})

{title}

{lang !== 'es' && ( Español )} {lang !== 'ca' && ( Català )} {lang !== 'en' && ( <> English )}
) }