import '../styles/author.css' import '../styles/innerPage.css' import '../styles/socialPosts.css' export const ProfileSection = () => { return (

{author.bio}

{posts.map((post, index) => (

{post.name}

{post.content}

{post.imageUrl && (
)}
))}
) } interface Author { name: string handle: string address: string bio: string } const author: Author = { name: 'User name', handle: 'nip5handle@domain.com', address: 'npub1address', bio: `user bio, this is a long string of temporary text that would be replaced with the user bio from their metada address` } interface Post { name: string link: string content: string imageUrl?: string } const posts: Post[] = [ { name: 'User name', link: `feed-note.html`, content: `user bio, this is a long string of temporary text that would be replaced with the user post from their short posts` }, { name: 'Freakoverse', link: 'feed-note.html', content: `user bio, this is a long string of temporary text that would be replaced with the user post from their short posts` }, { name: 'Freakoverse', link: `feed-note.html`, content: `user bio, this is a long string of temporary text that would be replaced with the user post from their short posts`, imageUrl: '/assets/img/DEGMods%20Placeholder%20Img.png' } ]