import type { Metadata } from 'next' import type React from 'react' import './globals.css' export const metadata: Metadata = { title: 'Next.js Bundle Analyzer', description: 'Visualize and analyze your Next.js bundle sizes with interactive treemap and dependency analysis', } export default function RootLayout({ children, }: Readonly<{ children: React.ReactNode }>) { return (