import type { Metadata } from 'next' import { Inter, IBM_Plex_Mono } from 'next/font/google' import './globals.css' const inter = Inter({ subsets: ['latin'], variable: '--font-inter', display: 'swap', weight: ['400','500','600','700'] }) const mono = IBM_Plex_Mono({ subsets: ['latin'], variable: '--font-ibm-plex-mono', display: 'swap', weight: ['400','500','600','700'] }) export const metadata: Metadata = { title: 'FlowState — AI-Powered Anti-Churn Engine', description: 'Autonomous retention layer for Solana protocols. Powered by Torque MCP.', } export default function RootLayout({ children }: { children: React.ReactNode }) { return ( {children} ) }