import React from 'react'; import { PostMetadata } from '@/types'; interface AuthorProfileProps { author: string; posts: PostMetadata[]; } // Static author profile. No bio/social data is available in the markdown // source, so we render the author's name and a placeholder avatar only. export default function AuthorProfile({ author }: AuthorProfileProps) { return (
{/* Placeholder avatar */}
{author.charAt(0).toUpperCase()}
{/* Author Name */}

{author}

); }