import './globals.css' import Navigation from '../components/Navigation.tsx' export const metadata = { title: 'Trading Bot Dashboard', description: 'AI-powered trading bot with automated analysis and execution', } export default function RootLayout({ children }) { return ( {/* Background Effects */}
{/* Header */}
TB

Trading Bot

AI-Powered Dashboard

Status

Online
{/* Navigation */} {/* Main Content */}
{children}
) }