| 1 | import type { Metadata } from "next"; |
| 2 | import "./styles.css"; |
| 3 | |
| 4 | export const metadata: Metadata = { |
| 5 | title: "AI Investment Intelligence Platform", |
| 6 | description: "Production-grade investment intelligence workspace" |
| 7 | }; |
| 8 | |
| 9 | export default function RootLayout({ children }: Readonly<{ children: React.ReactNode }>) { |
| 10 | return ( |
| 11 | <html lang="en" data-theme="system"> |
| 12 | <body>{children}</body> |
| 13 | </html> |
| 14 | ); |
| 15 | } |