import React from 'react' import Head from 'next/head' import { useTranslation } from 'next-i18next' interface Props { user: User } const ProfileHead = ({ user }: Props) => { // Import translations const { t } = useTranslation('common') return (
{/* HTML */}