import { t } from '@/lib/i18n' interface PresentationFormHeaderProps { userName: string } export function PresentationFormHeader({ userName }: PresentationFormHeaderProps) { return (

{userName}

{t('presentation.description')}

{t('presentation.profileNote')}

) }