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 */} {t('page.titles.profile', { username: user.username })} {/* OpenGraph */} {/* Twitter */} ) } export default ProfileHead