import { Avatar } from "@/components/Avatar"; import { formatDate } from "@/lib/formatDate"; export const BlogLayout: React.FC = ({ children, ...frontMatter }) => { const { title, date, authorsDetails } = frontMatter; return (
{title &&

{title}

} {date && (

)} {authorsDetails && (
{authorsDetails.map(({ name, avatar, isDraft, url_path }) => ( ))}
)}
{children}
); };