Paper_Trading / frontend /src /app /layout.tsx
superxuu
feat: Complete stock trading simulation system
2d4ab0a
raw
history blame contribute delete
489 Bytes
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>
);
}