Spaces:
Running
Running
| import type { Metadata } from 'next'; | |
| import './globals.css'; | |
| export const metadata: Metadata = { | |
| title: 'StockReplay-A | A股模拟交易复盘系统', | |
| description: '盲盒式选股训练,在随机历史行情中验证交易策略', | |
| }; | |
| export default function RootLayout({ | |
| children, | |
| }: { | |
| children: React.ReactNode; | |
| }) { | |
| return ( | |
| <html lang="zh-CN"> | |
| <body className="bg-background text-text-primary antialiased"> | |
| {children} | |
| </body> | |
| </html> | |
| ); | |
| } | |