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