add: 初始化基金估值页面

This commit is contained in:
hzm
2026-01-31 21:04:50 +08:00
parent 356be8a07f
commit fe2c21527b
38 changed files with 4395 additions and 0 deletions

19
app/layout.jsx Normal file
View File

@@ -0,0 +1,19 @@
import './globals.css';
export const metadata = {
title: '实时基金估值',
description: '输入基金编号添加基金实时显示估值与前10重仓'
};
export default function RootLayout({ children }) {
return (
<html lang="zh-CN">
<head>
<meta name="viewport" content="width=device-width, initial-scale=1, viewport-fit=cover" />
</head>
<body>
{children}
</body>
</html>
);
}