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 Integration Platform', description: 'Unified platform for AI agent tool integration. Connect 1000+ apps with managed auth, execute tools, and build automations.', } export default function RootLayout({ children }: { children: React.ReactNode }) { return ( {children} ) }