15 lines
343 B
TypeScript
15 lines
343 B
TypeScript
import { t } from '@/lib/i18n'
|
|
|
|
export function PresentationFormHeader() {
|
|
return (
|
|
<div className="mb-6">
|
|
<p className="text-cyber-accent text-sm mb-2">
|
|
{t('presentation.description')}
|
|
</p>
|
|
<p className="text-xs text-cyber-accent/60 italic">
|
|
{t('presentation.profileNote')}
|
|
</p>
|
|
</div>
|
|
)
|
|
}
|