import type { Metadata } from 'next' import { Inter } from 'next/font/google' import './globals.css' const inter = Inter({ subsets: ['latin'], variable: '--font-inter' }) export const metadata: Metadata = { title: 'Compost - AI Tool Platform', description: 'Unified AI tool integration platform', } export default function RootLayout({ children }: { children: React.ReactNode }) { return ( {children} ) }