import Image from 'next/image' import React from 'react' interface UserProfileHeaderProps { displayName: string picture?: string nip05?: string } export function UserProfileHeader({ displayName, picture, nip05, }: UserProfileHeaderProps) { return (
{nip05}
}