|
Before Width: | Height: | Size: 1.0 MiB After Width: | Height: | Size: 40 KiB |
|
Before Width: | Height: | Size: 2.5 KiB After Width: | Height: | Size: 2.6 KiB |
|
After Width: | Height: | Size: 45 KiB |
|
After Width: | Height: | Size: 282 KiB |
|
Before Width: | Height: | Size: 1.0 MiB After Width: | Height: | Size: 1.0 MiB |
|
|
@ -15,11 +15,20 @@ export const metadata: Metadata = {
|
|||
icons: {
|
||||
icon: [
|
||||
{ url: "/favicon.ico", sizes: "32x32" },
|
||||
{ url: "/icon-192.png", sizes: "192x192", type: "image/png" },
|
||||
{ url: "/icon-512.png", sizes: "512x512", type: "image/png" },
|
||||
{ url: "/icon.png", sizes: "1024x1024", type: "image/png" },
|
||||
],
|
||||
apple: "/apple-icon.png",
|
||||
apple: [
|
||||
{ url: "/apple-icon.png", sizes: "180x180", type: "image/png" },
|
||||
],
|
||||
shortcut: "/favicon.ico",
|
||||
},
|
||||
appleWebApp: {
|
||||
capable: true,
|
||||
statusBarStyle: "default",
|
||||
title: "TradingAgentsX",
|
||||
},
|
||||
openGraph: {
|
||||
title: "TradingAgentsX - 多代理 LLM 金融交易",
|
||||
description: "由 AI 驅動的多代理 LLM 金融交易框架",
|
||||
|
|
@ -35,6 +44,14 @@ export default function RootLayout({
|
|||
}>) {
|
||||
return (
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<head>
|
||||
<link rel="manifest" href="/manifest.json" />
|
||||
<meta name="theme-color" content="#6B21A8" />
|
||||
<meta name="apple-mobile-web-app-capable" content="yes" />
|
||||
<meta name="apple-mobile-web-app-status-bar-style" content="default" />
|
||||
<meta name="apple-mobile-web-app-title" content="TradingAgentsX" />
|
||||
<link rel="apple-touch-icon" href="/apple-icon.png" />
|
||||
</head>
|
||||
<body className={inter.className}>
|
||||
<ThemeProvider>
|
||||
<AuthProvider>
|
||||
|
|
|
|||