import type { Metadata } from 'next' import './globals.css' export const metadata: Metadata = { title: 'Trading Bot v4 - Settings', description: 'Autonomous Trading Bot Configuration', } export default function RootLayout({ children, }: { children: React.ReactNode }) { return ( {children} ) }