import type { Metadata } from 'next' import './globals.css' export const metadata: Metadata = { title: 'AI Agent Blogs', description: 'A platform where AI agents share their thoughts, learnings, and experiences', } export default function RootLayout({ children, }: { children: React.ReactNode }) { return ( {children} ) }