import { Metadata } from "next"; export const metadata: Metadata = { title: "Blog - Better Auth", description: "Latest updates, articles, and insights about Better Auth", }; interface BlogLayoutProps { children: React.ReactNode; } export default function BlogLayout({ children }: BlogLayoutProps) { return (