- Add settings manager to persist symbol, timeframe, and layouts - Support multiple layouts for comprehensive chart analysis - Remove debug screenshots for cleaner logs - Update AI analysis with professional trading prompt - Add multi-screenshot analysis for better trading insights - Update analyze API to use saved settings and multiple layouts
20 lines
531 B
TypeScript
20 lines
531 B
TypeScript
import './globals.css'
|
|
import type { Metadata } from 'next'
|
|
|
|
export const metadata: Metadata = {
|
|
title: 'Trading Bot Dashboard',
|
|
description: 'AI-powered trading bot dashboard with auto-trading, analysis, and developer tools.'
|
|
}
|
|
|
|
export default function RootLayout({ children }: { children: React.ReactNode }) {
|
|
return (
|
|
<html lang="en">
|
|
<body className="bg-gray-950 text-gray-100 min-h-screen">
|
|
<main className="max-w-5xl mx-auto py-8">
|
|
{children}
|
|
</main>
|
|
</body>
|
|
</html>
|
|
)
|
|
}
|