story-research-zapwall/components/PresentationFormHeader.tsx
Nicolas Cantu 55a70866eb Add NIP-95 upload endpoint documentation and improve error message
- Add NEXT_PUBLIC_NIP95_UPLOAD_URL to README environment variables section
- Add NIP-95 upload service documentation with examples
- Create .env.example file with all required environment variables
- Improve error message to guide users to README for setup instructions
- All TypeScript checks pass
2025-12-28 16:19:48 +01:00

22 lines
549 B
TypeScript

import { t } from '@/lib/i18n'
interface PresentationFormHeaderProps {
userName: string
}
export function PresentationFormHeader({ userName }: PresentationFormHeaderProps) {
return (
<div className="mb-6">
<h2 className="text-2xl font-bold mb-2 text-neon-cyan font-mono">
{userName}
</h2>
<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>
)
}