This commit is contained in:
MarkLo 2025-12-13 23:26:03 +08:00
parent 9280c71bfc
commit beb6ea6bdc
6 changed files with 18 additions and 1 deletions

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.0 MiB

After

Width:  |  Height:  |  Size: 40 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.5 KiB

After

Width:  |  Height:  |  Size: 2.6 KiB

BIN
frontend/app/icon-192.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 45 KiB

BIN
frontend/app/icon-512.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 282 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.0 MiB

After

Width:  |  Height:  |  Size: 1.0 MiB

View File

@ -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>