"use client"; import { BlogWithSlug } from "@/lib/blog"; import { IconArrowLeft } from "@tabler/icons-react"; import { Container } from "./container"; import Image from "next/image"; import { Logo } from "./Logo"; import Link from "next/link"; import { format } from "date-fns"; export function BlogLayout({ blog, children, }: { blog: BlogWithSlug; children: React.ReactNode; }) { return (
Back
{blog.author.name}

{blog.author.name}

{blog.image ? ( {blog.title} ) : (
)}

{blog.title}

{children}
); }